diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-10 19:21:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-11 00:21:14 +0000 |
commit | e9dde826df738c4094709804d72de4991b377a8a (patch) | |
tree | 22e20851ea92868e29e0afe70e745fcc306661b1 /ext/js/dom/sandbox/css-style-applier.js | |
parent | a6c57cc4d7ffeff16320e1d27280ac752fb80e21 (diff) |
Change no-console to error, only for ext files (#352)
Diffstat (limited to 'ext/js/dom/sandbox/css-style-applier.js')
-rw-r--r-- | ext/js/dom/sandbox/css-style-applier.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/js/dom/sandbox/css-style-applier.js b/ext/js/dom/sandbox/css-style-applier.js index ea36a02d..200fd05f 100644 --- a/ext/js/dom/sandbox/css-style-applier.js +++ b/ext/js/dom/sandbox/css-style-applier.js @@ -49,6 +49,7 @@ export class CssStyleApplier { try { rawData = await this._fetchJsonAsset(this._styleDataUrl); } catch (e) { + // eslint-disable-next-line no-console console.error(e); } const styleData = this._styleData; |