mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 05:14:20 +03:00
Default empty width/height as 0 when cleared. Closes https://github.com/owncast/owncast/issues/781
This commit is contained in:
parent
49269dd175
commit
55f5406e5f
1 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@ export default function VideoVariantForm({
|
|||
if (isNaN(value)) {
|
||||
return;
|
||||
}
|
||||
onUpdateField({ fieldName: 'scaledWidth', value: value || '' });
|
||||
onUpdateField({ fieldName: 'scaledWidth', value: value || 0 });
|
||||
};
|
||||
const handleScaledHeightChanged = (args: UpdateArgs) => {
|
||||
const value = Number(args.value);
|
||||
|
@ -54,7 +54,7 @@ export default function VideoVariantForm({
|
|||
if (isNaN(value)) {
|
||||
return;
|
||||
}
|
||||
onUpdateField({ fieldName: 'scaledHeight', value: value || '' });
|
||||
onUpdateField({ fieldName: 'scaledHeight', value: value || 0 });
|
||||
};
|
||||
|
||||
// Video passthrough handling
|
||||
|
|
Loading…
Reference in a new issue