From 7b1911e5bd28908c6e3b90d75cc202ae7ea4b4dc Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 20 Dec 2019 11:46:14 +0300 Subject: [PATCH] [DE] Fix applying numbering --- apps/documenteditor/main/app/controller/Toolbar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Toolbar.js b/apps/documenteditor/main/app/controller/Toolbar.js index 7ba8585cf..c0e112020 100644 --- a/apps/documenteditor/main/app/controller/Toolbar.js +++ b/apps/documenteditor/main/app/controller/Toolbar.js @@ -1318,8 +1318,8 @@ define([ btn.toggle(rawData.data.subtype > -1, true); } - this._state.bullets.type = rawData.data.type; - this._state.bullets.subtype = rawData.data.subtype; + this._state.bullets.type = undefined; + this._state.bullets.subtype = undefined; if (this.api) this.api.put_ListType(rawData.data.type, rawData.data.subtype);