Skip to content

Commit

Permalink
style: small tweaks on code style and editor UI (#450)
Browse files Browse the repository at this point in the history
* fix: notes > note

* style: improve roll visibility
  • Loading branch information
cpvalente authored Jul 11, 2023
1 parent 6c9222b commit 91a2d39
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { IoPlaySkipBack } from '@react-icons/all-files/io5/IoPlaySkipBack';
import { IoPlaySkipForward } from '@react-icons/all-files/io5/IoPlaySkipForward';
import { IoReload } from '@react-icons/all-files/io5/IoReload';
import { IoStop } from '@react-icons/all-files/io5/IoStop';
import { IoTimeOutline } from '@react-icons/all-files/io5/IoTimeOutline';
import { IoTime} from '@react-icons/all-files/io5/IoTime';
import { Playback } from 'ontime-types';

import { setPlayback } from '../../../../common/hooks/useSocket';
Expand Down Expand Up @@ -88,7 +88,7 @@ export default function PlaybackButtons(props: PlaybackButtonsProps) {
theme={Playback.Roll}
active={isRolling}
>
<IoTimeOutline />
<IoTime />
</TapButton>
<Tooltip label='Reload event' openDelay={tooltipDelayMid}>
<TapButton onClick={setPlayback.reload} disabled={isStopped || isRolling}>
Expand Down
2 changes: 1 addition & 1 deletion apps/client/src/features/table/__tests__/utils.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('parseField()', () => {
{ field: 'title', value: 'test' },
{ field: 'presenter', value: 'test' },
{ field: 'subtitle', value: 'test' },
{ field: 'notes', value: 'test' },
{ field: 'note', value: 'test' },
{ field: 'colour', value: 'test' },
{ field: 'user0', value: 'test' },
{ field: 'user1', value: 'test' },
Expand Down

0 comments on commit 91a2d39

Please sign in to comment.