diff --git a/manage/config-dialog.js b/manage/config-dialog.js index 70cd98c3..ae3ba42c 100644 --- a/manage/config-dialog.js +++ b/manage/config-dialog.js @@ -26,11 +26,20 @@ function configDialog(style) { $createLink({className: '.external-support', href: data.supportURL}, t('externalFeedback'))), $create('.config-body', elements) ], - buttons: [ - {textContent: t('confirmSave'), dataset: {cmd: 'save'}, disabled: true, onclick: save}, - {textContent: t('confirmDefault'), dataset: {cmd: 'default'}, onclick: useDefault}, - {textContent: t('confirmClose'), dataset: {cmd: 'close'}}, - ], + buttons: [{ + textContent: t('confirmSave'), + dataset: {cmd: 'save'}, + disabled: true, + onclick: save, + }, { + textContent: t('genericResetLabel'), + title: t('optionsReset'), + dataset: {cmd: 'default'}, + onclick: useDefault, + }, { + textContent: t('confirmClose'), + dataset: {cmd: 'close'}, + }], onshow, }).then(onhide);