Skip to content
Snippets Groups Projects
Commit 093ff2b7 authored by florian's avatar florian
Browse files

FIX: Only use the edit-mode fix when actually in edit mode

parent 09290e42
No related branches found
No related tags found
2 merge requests!89Release v0.10.0,!86F hide properties
Pipeline #31247 passed
......@@ -180,15 +180,22 @@ var prop_display = new function ($, edit_mode, getEntityName, getEntityRole, get
const allTypes = await this._getRecordTypes(conf);
var entities = this.getEntitiesInView();
this.unhideProperties(entities, conf, allTypes);
edit_mode.app.onAfterShowResults = this._unhidePropertiesWrapper(edit_mode.app.onAfterShowResults, conf, allTypes);
// If we are in the edit mode, (un)hide properties after ending
// the editing of an entity
document.body.addEventListener(edit_mode.start_edit.type, (e) => {
edit_mode.app.onAfterShowResults = this._unhidePropertiesWrapper(edit_mode.app.onAfterShowResults, conf, allTypes);
}, true);
} else {
this.unhideAllProperties();
// also unhide properties when leaving the edit mode
// TODO(fspreck): We're lacking a proper state/event here in the
// edit mode, so do this on "init", since this is the state to which
// the state machine returns after either successfully saving an
// entity or canceling the edit.
edit_mode.app.onAfterShowResults = this._unhideAllPropertiesWrapper(edit_mode.app.onAfterShowResults);
document.body.addEventListener(edit_mode.start_edit.type, (e) => {
// also unhide properties when leaving the edit mode
// TODO(fspreck): We're lacking a proper state/event here in the
// edit mode, so do this on "init", since this is the state to which
// the state machine returns after either successfully saving an
// entity or canceling the edit.
edit_mode.app.onAfterShowResults = this._unhideAllPropertiesWrapper(edit_mode.app.onAfterShowResults);
}, true);
}
}
}($, edit_mode, getEntityName, getEntityRole, getPropertyElements, getPropertyName, getUserName, getUserRoles, log.getLogger("ext_prop_display"), load_config, query);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment