Skip to content

Commit

Permalink
IBX-7694: Richtext custom tag attributes don't have effect on existin…
Browse files Browse the repository at this point in the history
…g tags (#173)
  • Loading branch information
GrabowskiM authored Aug 2, 2024
1 parent ae221f6 commit 4b30d2f
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,7 @@ class IbexaCustomTagUI extends Plugin {

this.isNew = false;

Object.keys(values).forEach((name) => {
const attributeView = this.formView.attributeViews[name];

if (!attributeView) {
return;
}

Object.entries(this.formView.attributeViews).forEach(([name, attributeView]) => {
newValues[name] = attributeView.fieldView.element.value;
});

Expand Down

0 comments on commit 4b30d2f

Please sign in to comment.