Skip to content

Commit

Permalink
Fix: tempoChangeの指定を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi authored Nov 13, 2024
1 parent 4d740ad commit 3583f01
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/Sing/SequencerRuler/Presentation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -578,9 +578,7 @@ const contextMenudata = computed<ContextMenuItemData[]>(
tempoChange: Omit<Tempo, "position">;
}
>(TempoChangeDialog, {
timeSignatureChange: timeSignatureChangeExists.value
? currentTimeSignature.value
: undefined,
tempoChange: tempoChangeExists.value ? currentTempo.value : undefined,

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

View workflow job for this annotation

GitHub Actions / build_preview_pages

Replace `·?·currentTempo.value` with `⏎··············?·currentTempo.value⏎·············`

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

View workflow job for this annotation

GitHub Actions / build-test

Replace `·?·currentTempo.value` with `⏎··············?·currentTempo.value⏎·············`

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

View workflow job for this annotation

GitHub Actions / lint

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

0 comments on commit 3583f01

Please sign in to comment.