mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-21 01:05:30 +00:00
Fix for FileInput width with long filenames
This commit is contained in:
parent
b8f0327002
commit
1ea70ab029
1 changed files with 9 additions and 1 deletions
|
|
@ -217,7 +217,7 @@ const M3U = ({
|
|||
|
||||
<form onSubmit={form.onSubmit(onSubmit)}>
|
||||
<Group justify="space-between" align="top">
|
||||
<Stack gap="5" style={{ flex: 1 }}>
|
||||
<Stack gap="5" style={{ flex: 1, minWidth: 0 }}>
|
||||
<TextInput
|
||||
style={{ width: '100%' }}
|
||||
id="name"
|
||||
|
|
@ -317,6 +317,14 @@ const M3U = ({
|
|||
placeholder="Upload files"
|
||||
description="Upload a local M3U file instead of using URL"
|
||||
onChange={setFile}
|
||||
styles={{
|
||||
input: {
|
||||
overflow: 'hidden',
|
||||
textOverflow: 'ellipsis',
|
||||
whiteSpace: 'nowrap',
|
||||
display: 'block',
|
||||
},
|
||||
}}
|
||||
/>
|
||||
|
||||
<DateTimePicker
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue