Fixed an error on the KoenigBasicHtmlTextarea

refs https://github.com/TryGhost/Team/issues/1206

- Backspace was triggering the error due to undefined `SPECIAL_MARKUPS`
This commit is contained in:
Thibaut Patel 2021-11-17 16:30:18 +01:00
parent 67ec0318a2
commit 042a772ebe

View File

@ -110,6 +110,8 @@ export default Component.extend({
init() {
this._super(...arguments);
this.SPECIAL_MARKUPS = SPECIAL_MARKUPS;
},
didReceiveAttrs() {