Skip to content

Commit

Permalink
nullable language in text preprocessors controller
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanVukovic99 committed Feb 4, 2024
1 parent 4699904 commit f032d99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/js/pages/settings/text-preprocessors-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ export class TextPreprocessorsController {
this._container = querySelectorNotNull(document, '#text-preprocessors');
/** @type {import('language').TextPreprocessor[]}*/
this._preprocessors = [];
/** @type {string} */
this._language = '';
/** @type {string|null} */
this._language = null;
}

/**
Expand Down

0 comments on commit f032d99

Please sign in to comment.