Commit 29ac723763210c23628e356ebd75b04b45b42d13
1 parent
b96dd3e7
Remove default value from boundary range
Showing
1 changed file
with
2 additions
and
4 deletions
... | ... | @@ -215,8 +215,7 @@ export const digitalGaugeSettingsSchema: JsonSettingsSchema = { |
215 | 215 | }, |
216 | 216 | value: { |
217 | 217 | title: '[From] Value (if predefined value is selected)', |
218 | - type: 'number', | |
219 | - default: 0 | |
218 | + type: 'number' | |
220 | 219 | } |
221 | 220 | } |
222 | 221 | }, |
... | ... | @@ -239,8 +238,7 @@ export const digitalGaugeSettingsSchema: JsonSettingsSchema = { |
239 | 238 | }, |
240 | 239 | value: { |
241 | 240 | title: '[To] Value (if predefined value is selected)', |
242 | - type: 'number', | |
243 | - default: 100 | |
241 | + type: 'number' | |
244 | 242 | } |
245 | 243 | } |
246 | 244 | }, | ... | ... |