We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2148119 + 1bc827b commit ff23580Copy full SHA for ff23580
2 files changed
src/components/GearForm.tsx
@@ -539,7 +539,7 @@ export function GearForm({
539
className={inputCls}
540
value={dinSetting}
541
onChange={(e) => setDinSetting(e.target.value)}
542
- placeholder={defaultDIN !== undefined ? `Default: ${defaultDIN}` : 'e.g., 5.5'}
+ placeholder={defaultDIN !== undefined ? `Default: ${defaultDIN}` : 'DIN Setting'}
543
step="0.5"
544
min="1"
545
max="14"
src/components/SettingsScreen.tsx
@@ -228,7 +228,7 @@ export function SettingsScreen({
228
const val = e.target.value;
229
onUpdateSettings({ defaultDIN: val === '' ? undefined : parseFloat(val) });
230
}}
231
- placeholder="e.g. 5.5"
+ placeholder="DIN Setting"
232
233
234
0 commit comments