Skip to content

Commit

Permalink
fix placeholder for prefix inputs (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasoppermann authored Jun 17, 2022
1 parent bb1c51b commit 4f1e4c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/components/GeneralSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export const GeneralSettings = () => {
// eslint-disable-next-line
pattern={isStyle(key) ? '^[\\w\\-@]+$' : '^[\\w\\-@,\\s]+$'}
required
placeholder='Color'
placeholder={key}
value={currentValue}
onChange={value => updateSettings((draft: Settings) => { draft.prefix[key] = value })}
/>
Expand Down

0 comments on commit 4f1e4c4

Please sign in to comment.