aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/EditorButtons.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/editor/EditorButtons.tsx')
-rw-r--r--subprojects/frontend/src/editor/EditorButtons.tsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/subprojects/frontend/src/editor/EditorButtons.tsx b/subprojects/frontend/src/editor/EditorButtons.tsx
index 95da52c8..bed6afa8 100644
--- a/subprojects/frontend/src/editor/EditorButtons.tsx
+++ b/subprojects/frontend/src/editor/EditorButtons.tsx
@@ -41,6 +41,7 @@ function EditorButtons(): JSX.Element {
41 disabled={!editorStore.canUndo} 41 disabled={!editorStore.canUndo}
42 onClick={() => editorStore.undo()} 42 onClick={() => editorStore.undo()}
43 aria-label="Undo" 43 aria-label="Undo"
44 color="inherit"
44 > 45 >
45 <UndoIcon fontSize="small" /> 46 <UndoIcon fontSize="small" />
46 </IconButton> 47 </IconButton>
@@ -48,6 +49,7 @@ function EditorButtons(): JSX.Element {
48 disabled={!editorStore.canRedo} 49 disabled={!editorStore.canRedo}
49 onClick={() => editorStore.redo()} 50 onClick={() => editorStore.redo()}
50 aria-label="Redo" 51 aria-label="Redo"
52 color="inherit"
51 > 53 >
52 <RedoIcon fontSize="small" /> 54 <RedoIcon fontSize="small" />
53 </IconButton> 55 </IconButton>
@@ -87,6 +89,7 @@ function EditorButtons(): JSX.Element {
87 <IconButton 89 <IconButton
88 onClick={() => editorStore.formatText()} 90 onClick={() => editorStore.formatText()}
89 aria-label="Automatic format" 91 aria-label="Automatic format"
92 color="inherit"
90 > 93 >
91 <FormatPaint fontSize="small" /> 94 <FormatPaint fontSize="small" />
92 </IconButton> 95 </IconButton>