Skip to content

Commit

Permalink
fix triggers not updated for hidden attributes
Browse files Browse the repository at this point in the history
Signed-off-by: Vinzenz Rosenkranz <vinzenz.rosenkranz@uni-tuebingen.de>
  • Loading branch information
v1r0x committed Jan 28, 2025
1 parent 422ead8 commit 928852b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/components/EntityDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@
state.editedEntityName = '';
};
const updateDependencyState = (aid, value) => {
const attributeTriggers = state.entityTypeTriggers[aid];
const attributeTriggers = Object.values(state.entityTypeTriggers).flat();
if(!attributeTriggers) return;
const liveData = {
Expand Down

0 comments on commit 928852b

Please sign in to comment.