Skip to content

Commit 9f37561

Browse files
committed
Changed back to No and Yes
1 parent be7598d commit 9f37561

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/modals/ConfirmOverwriteModal.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ export class ConfirmOverwriteModal extends Modal {
2121

2222
const bottomSettingRow = new Setting(contentEl);
2323
bottomSettingRow.addButton(btn => {
24-
btn.setButtonText('Cancel');
24+
btn.setButtonText('No');
2525
btn.onClick(() => this.close());
2626
btn.buttonEl.addClass('media-db-plugin-button');
2727
});
2828
bottomSettingRow.addButton(btn => {
29-
btn.setButtonText('Ok');
29+
btn.setButtonText('Yes');
3030
btn.setCta();
3131
btn.onClick(() => {
3232
this.result = true;

0 commit comments

Comments
 (0)