Skip to content

Commit

Permalink
fix: 不要なuiLockedチェックを削除 (#839)
Browse files Browse the repository at this point in the history
  • Loading branch information
SIY1121 authored Jun 20, 2022
1 parent 65e8b1d commit 7af7528
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions src/components/AudioDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -275,25 +275,19 @@ export default defineComponent({
[
"アクセント欄を表示",
() => {
if (!uiLocked.value) {
selectedDetail.value = "accent";
}
selectedDetail.value = "accent";
},
],
[
"イントネーション欄を表示",
() => {
if (!uiLocked.value) {
selectedDetail.value = "pitch";
}
selectedDetail.value = "pitch";
},
],
[
"長さ欄を表示",
() => {
if (!uiLocked.value) {
selectedDetail.value = "length";
}
selectedDetail.value = "length";
},
],
[
Expand Down

0 comments on commit 7af7528

Please sign in to comment.