File tree Expand file tree Collapse file tree
src/viewer/src/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,7 +57,9 @@ export default function Toolbar({
5757 return (
5858 < div className = "toolbar" >
5959 < Link href = "/" >
60- < button type = "button" className = "button" > Gallery</ button >
60+ < button type = "button" className = "button" >
61+ Gallery
62+ </ button >
6163 </ Link >
6264
6365 < div className = "sep" />
@@ -83,11 +85,23 @@ export default function Toolbar({
8385 </ button >
8486
8587 { isPlaying ? (
86- < button type = "button" className = "button" onClick = { onPause } disabled = { ! isLoaded } title = "Pause playback" >
88+ < button
89+ type = "button"
90+ className = "button"
91+ onClick = { onPause }
92+ disabled = { ! isLoaded }
93+ title = "Pause playback"
94+ >
8795 ⏸️ Pause
8896 </ button >
8997 ) : (
90- < button type = "button" className = "button" onClick = { onPlay } disabled = { ! isLoaded } title = "Start playback" >
98+ < button
99+ type = "button"
100+ className = "button"
101+ onClick = { onPlay }
102+ disabled = { ! isLoaded }
103+ title = "Start playback"
104+ >
91105 ▶️ Play
92106 </ button >
93107 ) }
You can’t perform that action at this time.
0 commit comments