11343: Remove blocklist block on cancel

This commit is contained in:
Patrick de Mooij
2021-10-11 21:15:25 +02:00
committed by Nathan Woulfe
parent 3fb150dda3
commit b13f260341

View File

@@ -65,6 +65,9 @@
vm.layout = []; // The layout object specific to this Block Editor, will be a direct reference from Property Model.
vm.availableBlockTypes = []; // Available block entries of this property editor.
vm.labels = {};
vm.options = {
createFlow: false
};
localizationService.localizeMany(["grid_addElement", "content_createEmpty"]).then(function (data) {
vm.labels.grid_addElement = data[0];
@@ -380,7 +383,7 @@
function editBlock(blockObject, openSettings, blockIndex, parentForm, options) {
options = options || {};
options = options || vm.options;
// this must be set
if (blockIndex === undefined) {
@@ -560,7 +563,9 @@
if (inlineEditing === true) {
blockObject.activate();
} else if (inlineEditing === false && blockObject.hideContentInOverlay !== true) {
vm.options.createFlow = true;
blockObject.edit();
vm.options.createFlow = false;
}
}
}