summaryrefslogtreecommitdiff
path: root/frontend/src/components/modals/filepicker/index.tsx
diff options
context:
space:
mode:
authorEMERALD <hudson.samuels@gmail.com>2023-04-25 21:20:39 -0500
committerGitHub <noreply@github.com>2023-04-25 19:20:39 -0700
commit93151e4e5e4776e249d9d824bbdf8f610dbae708 (patch)
treed3e1ad2b41573a835e91f07359afb6a77d518c92 /frontend/src/components/modals/filepicker/index.tsx
parentd6f336d84b8b00161a688d4b39b82165a3ebe1f3 (diff)
downloaddecky-loader-2.7.3-pre1.tar.gz
decky-loader-2.7.3-pre1.zip
Add file picker plugin install, plugin installs to developer page (#405)v2.7.3-pre1
Diffstat (limited to 'frontend/src/components/modals/filepicker/index.tsx')
-rw-r--r--frontend/src/components/modals/filepicker/index.tsx10
1 files changed, 9 insertions, 1 deletions
diff --git a/frontend/src/components/modals/filepicker/index.tsx b/frontend/src/components/modals/filepicker/index.tsx
index dcf179a3..ec3fc260 100644
--- a/frontend/src/components/modals/filepicker/index.tsx
+++ b/frontend/src/components/modals/filepicker/index.tsx
@@ -134,7 +134,15 @@ const FilePicker: FunctionComponent<FilePickerProps> = ({
)}
</div>
)}
- {file.name}
+ <span
+ style={{
+ textOverflow: 'ellipsis',
+ overflow: 'hidden',
+ textAlign: 'left',
+ }}
+ >
+ {file.name}
+ </span>
</div>
</DialogButton>
);