From 1a61da2ae29da75e9ad69f141d4d5c3c4a87ca8c Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 13 Oct 2022 19:40:33 +0300 Subject: [PATCH] [DE] Fix apply empty key (back to old value) --- apps/documenteditor/main/app/view/FormSettings.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/documenteditor/main/app/view/FormSettings.js b/apps/documenteditor/main/app/view/FormSettings.js index 9e89325ea..29209b27f 100644 --- a/apps/documenteditor/main/app/view/FormSettings.js +++ b/apps/documenteditor/main/app/view/FormSettings.js @@ -576,6 +576,7 @@ define([ onKeyChanged: function(combo, record) { if (this.api && !this._noApply) { + this._state.Key = undefined; var props = this._originalProps || new AscCommon.CContentControlPr(); var formPr = this._originalFormProps || new AscCommon.CSdtFormPr(); formPr.put_Key(record.value);