Skip to content

Commit

Permalink
fix dictiontary typo
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanVukovic99 committed Aug 22, 2024
1 parent 9091d74 commit 6ef50dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/js/pages/settings/dictionary-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ export class DictionaryController {
const dictionaryMoveButton = querySelectorNotNull(document, '#dictionary-move-button');

/** @type {HTMLButtonElement} */
const dictiontaryResetAliasButton = querySelectorNotNull(document, '#dictionary-reset-alias-button');
const dictionaryResetAliasButton = querySelectorNotNull(document, '#dictionary-reset-alias-button');
/** @type {HTMLButtonElement} */
const dictionarySetAliasButton = querySelectorNotNull(document, '#dictionary-set-alias-button');

Expand All @@ -545,7 +545,7 @@ export class DictionaryController {
dictionaryMoveButton.addEventListener('click', this._onDictionaryMoveButtonClick.bind(this), false);

dictionarySetAliasButton.addEventListener('click', this._onDictionarySetAliasButtonClick.bind(this), false);
dictiontaryResetAliasButton.addEventListener('click', this._onDictionaryResetAliasButtonClick.bind(this), false);
dictionaryResetAliasButton.addEventListener('click', this._onDictionaryResetAliasButtonClick.bind(this), false);

if (this._checkUpdatesButton !== null) {
this._checkUpdatesButton.addEventListener('click', this._onCheckUpdatesButtonClick.bind(this), false);
Expand Down

0 comments on commit 6ef50dc

Please sign in to comment.