Skip to content

Commit

Permalink
Code: prettierにしたがう
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi authored Nov 13, 2024
1 parent 3ba5267 commit da37160
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Sing/SequencerRuler/Presentation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,9 @@ const contextMenudata = computed<ContextMenuItemData[]>(
tempoChange: Omit<Tempo, "position">;
}
>(TempoChangeDialog, {
tempoChange: tempoChangeExists.value ? currentTempo.value : undefined,
tempoChange: tempoChangeExists.value
? currentTempo.value

Check failure on line 582 in src/components/Sing/SequencerRuler/Presentation.vue

View workflow job for this annotation

GitHub Actions / build_preview_pages

Replace `↹↹↹↹↹↹` with `············`

Check failure on line 582 in src/components/Sing/SequencerRuler/Presentation.vue

View workflow job for this annotation

GitHub Actions / build-test

Replace `↹↹↹↹↹↹` with `············`

Check failure on line 582 in src/components/Sing/SequencerRuler/Presentation.vue

View workflow job for this annotation

GitHub Actions / lint

Replace `↹↹↹↹↹↹` with `············`
: undefined,

Check failure on line 583 in src/components/Sing/SequencerRuler/Presentation.vue

View workflow job for this annotation

GitHub Actions / build_preview_pages

Replace `↹↹↹↹↹↹↹` with `··············`

Check failure on line 583 in src/components/Sing/SequencerRuler/Presentation.vue

View workflow job for this annotation

GitHub Actions / build-test

Replace `↹↹↹↹↹↹↹` with `··············`

Check failure on line 583 in src/components/Sing/SequencerRuler/Presentation.vue

View workflow job for this annotation

GitHub Actions / lint

Replace `↹↹↹↹↹↹↹` with `··············`
mode: tempoChangeExists.value ? "edit" : "add",
});
if (!result) {
Expand Down

0 comments on commit da37160

Please sign in to comment.