Skip to content

Commit

Permalink
Call change event after update of multiple text string order. (#17899)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyButland authored Jan 7, 2025
1 parent 1cd9e3e commit f3ecd94
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@ export class UmbInputMultipleTextStringElement extends UmbFormControlMixin<undef
getUniqueOfModel: (modelEntry: string) => {
return modelEntry;
},
identifier: 'Umb.SorterIdentifier.ColorEditor',
identifier: 'Umb.SorterIdentifier.MultipleTextString',
itemSelector: 'umb-input-multiple-text-string-item',
containerSelector: '#sorter-wrapper',
onChange: ({ model }) => {
const oldValue = this._items;
this._items = model;
this.requestUpdate('_items', oldValue);
this.dispatchEvent(new UmbChangeEvent());
},
});

Expand Down

0 comments on commit f3ecd94

Please sign in to comment.