Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions changelog/entries/unreleased/bug/fix_broken_menu_element.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "bug",
"message": "Fix broken menu element",
"domain": "builder",
"issue_number": null,
"bullet_points": [],
"created_at": "2025-11-13"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "bug",
"message": "Fix collection element broken when they are in container",
"domain": "builder",
"issue_number": null,
"bullet_points": [],
"created_at": "2025-11-13"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "bug",
"message": "Fix workflow action configuration broken",
"domain": "builder",
"issue_number": null,
"bullet_points": [],
"created_at": "2025-11-13"
}
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ export default {
.getItemMenuError({
menuItem: this.values,
builder: this.builder,
page: this.elementPage,
elementPage: this.elementPage,
element: this.element,
})
},
Expand Down
3 changes: 0 additions & 3 deletions web-frontend/modules/builder/components/page/PageContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
:element="element"
:mode="mode"
:application-context-additions="{
element,
page: currentPage,
recordIndexPath: [],
}"
Expand All @@ -17,7 +16,6 @@
:element="element"
:mode="mode"
:application-context-additions="{
element,
page: currentPage,
recordIndexPath: [],
}"
Expand All @@ -28,7 +26,6 @@
:element="element"
:mode="mode"
:application-context-additions="{
element,
page: currentPage,
recordIndexPath: [],
}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
:key="element._.uid"
:element="element"
class="element"
:application-context-additions="{ element }"
:class="elementClasses"
@move="$emit('move', $event)"
/>
Expand Down
3 changes: 0 additions & 3 deletions web-frontend/modules/builder/components/page/PagePreview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
:is-copying="copyingElementIndex === index"
:application-context-additions="{
recordIndexPath: [],
element,
page: currentPage,
}"
:show-element-id="showElementId"
Expand Down Expand Up @@ -71,7 +70,6 @@
:is-copying="copyingElementIndex === index"
:application-context-additions="{
recordIndexPath: [],
element,
page: currentPage,
}"
:show-element-id="showElementId"
Expand Down Expand Up @@ -104,7 +102,6 @@
:is-copying="copyingElementIndex === index"
:application-context-additions="{
recordIndexPath: [],
element,
page: currentPage,
}"
:show-element-id="showElementId"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -291,10 +291,12 @@ export default {
},
},
watch: {
nodesHierarchy() {
nodesHierarchy(newValue, oldValue) {
// fixes reactivity issue with components in tiptap by forcing the input to
// render.
this.key += 1
if (!_.isEqual(newValue, oldValue)) {
this.key += 1
}
},
disabled(newValue) {
this.editor.setOptions({ editable: !newValue && !this.readOnly })
Expand Down
Loading