diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-10 20:38:20 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-10 20:38:20 -0500 |
commit | bbb74d0a48e389f3b29e9d9a53c1ac383e8046fe (patch) | |
tree | 336778968cd5cdcc2fac375a35e7c206518e286f /ext/mixed/js | |
parent | cbfae2b9d7a5c8824edd7d2d7f80fdacd15cd333 (diff) |
Assign _isInitialized
Diffstat (limited to 'ext/mixed/js')
-rw-r--r-- | ext/mixed/js/display-generator.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/mixed/js/display-generator.js b/ext/mixed/js/display-generator.js index c90e693a..d5ab9dbc 100644 --- a/ext/mixed/js/display-generator.js +++ b/ext/mixed/js/display-generator.js @@ -307,6 +307,7 @@ class DisplayGenerator { const html = await apiGetDisplayTemplatesHtml(); const doc = new DOMParser().parseFromString(html, 'text/html'); this._setTemplates(doc); + this._isInitialized = true; } _setTemplates(doc) { |