Skip to content

Commit

Permalink
ボタン順序変更
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba committed Dec 15, 2024
1 parent 9e37ddb commit 280e28d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions src/components/Dialog/DictionaryManageDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -253,21 +253,21 @@
<div class="row q-px-md save-delete-reset-buttons">
<QSpace />
<QBtn
v-show="!!selectedId"
outline
textColor="display"
class="text-no-wrap text-bold q-mr-sm"
:disable="uiLocked || !isWordChanged"
@click="resetWord(selectedId)"
>リセット</QBtn
:disable="uiLocked"
@click="discardOrNotDialog(cancel)"
>キャンセル</QBtn
>
<QBtn
v-show="!!selectedId"
outline
textColor="display"
class="text-no-wrap text-bold q-mr-sm"
:disable="uiLocked"
@click="discardOrNotDialog(cancel)"
>キャンセル</QBtn
:disable="uiLocked || !isWordChanged"
@click="resetWord(selectedId)"
>リセット</QBtn
>
<QBtn
outline
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/browser/辞書ダイアログ.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ test("「設定」→「読み方&アクセント辞書」で「読み方&
await page.waitForTimeout(100);
await getNewestQuasarDialog(page)
.getByRole("button")
.filter({ hasText: "削除" })
.filter({ hasText: "削除する" })
.click();
await page.waitForTimeout(100);

Expand Down

0 comments on commit 280e28d

Please sign in to comment.