mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
fix: min indent spaces set to 1 (thrown error when 0)
This commit is contained in:
@@ -178,7 +178,7 @@ export default function CsvToYaml({
|
||||
value={values.spaces}
|
||||
type="number"
|
||||
onOwnChange={(val) => updateField('spaces', Number(val))}
|
||||
inputProps={{ min: 0 }}
|
||||
inputProps={{ min: 1 }}
|
||||
description={
|
||||
'Set the number of spaces to use for YAML indentation.'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user