Add ID to ThemeEditorButton

This commit is contained in:
Martin Fournier 2022-01-20 18:43:36 -05:00
parent a26b9c8dcf
commit 5c0d76828f

@ -14,7 +14,7 @@ export function ThemeEditorButton({ router }: IProps): React.ReactElement {
return (
<>
<Tooltip title="The theme editor allows you to modify the colors the game uses.">
<Button startIcon={<ColorizeIcon />} onClick={() => setThemeEditorOpen(true)}>
<Button id="bb-theme-editor-button" startIcon={<ColorizeIcon />} onClick={() => setThemeEditorOpen(true)}>
Theme Editor
</Button>
</Tooltip>