We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be7598d commit 9f37561Copy full SHA for 9f37561
src/modals/ConfirmOverwriteModal.ts
@@ -21,12 +21,12 @@ export class ConfirmOverwriteModal extends Modal {
21
22
const bottomSettingRow = new Setting(contentEl);
23
bottomSettingRow.addButton(btn => {
24
- btn.setButtonText('Cancel');
+ btn.setButtonText('No');
25
btn.onClick(() => this.close());
26
btn.buttonEl.addClass('media-db-plugin-button');
27
});
28
29
- btn.setButtonText('Ok');
+ btn.setButtonText('Yes');
30
btn.setCta();
31
btn.onClick(() => {
32
this.result = true;
0 commit comments