Skip to content

Commit

Permalink
#100 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
martonsagi committed Mar 21, 2021
1 parent e53b998 commit 9c63793
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions web-ui/src/resources/elements/feature-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ export class FeatureList {
if (i != -1) {
let oldValue = parent.children[index];

if (oldValue == newValue) {
return;
}

parent.children.splice(index, 1, newValue);
//this.entries.splice(i, 1, parent);

Expand Down

0 comments on commit 9c63793

Please sign in to comment.