Skip to content

Commit

Permalink
Fix white/black stone theme url placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
anoek committed Aug 28, 2024
1 parent 3dda6c0 commit 2734191
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/GobanThemePicker/GobanThemePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -432,8 +432,8 @@ export function GobanCustomBlackPicker(props: GobanThemePickerProperties): JSX.E
type="text"
value={url}
placeholder={pgettext(
"A URL pointing to a custom white stone image",
"Custom white stone URL",
"A URL pointing to a custom black stone image",
"Custom black stone URL",
)}
onFocus={(e) => e.target.select()}
onChange={setUrl}
Expand Down Expand Up @@ -604,8 +604,8 @@ export function GobanCustomWhitePicker(props: GobanThemePickerProperties): JSX.E
type="text"
value={url}
placeholder={pgettext(
"A URL pointing to a custom black stone image",
"Custom black stone URL",
"A URL pointing to a custom white stone image",
"Custom white stone URL",
)}
onFocus={(e) => e.target.select()}
onChange={setUrl}
Expand Down

0 comments on commit 2734191

Please sign in to comment.