1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fix inputProps depreciation

This commit is contained in:
gompa 2025-03-26 10:33:35 +01:00
parent 27febb599c
commit 419c225937
10 changed files with 174 additions and 124 deletions

View file

@ -148,11 +148,13 @@ const NewTriggerForm: FunctionComponent<IProps> = ({ open, title, onClose, onAdd
fullWidth
defaultValue={''}
type='number'
inputProps={{
min: 1,
step: 0.5
}}
label={globalize.translate('LabelTimeLimitHours')}
slotProps={{
htmlInput: {
min: 1,
step: 0.5
}
}}
/>
</Stack>
</DialogContent>