Skip to content

Commit

Permalink
fix(edit-ema): Fixed behaviour on select contentlet (#27560)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinDavilaDotCMS authored and dsolistorres committed Feb 9, 2024
1 parent 0b51ba8 commit 8680b2b
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1289,8 +1289,7 @@ dojo.declare(
dojo.parser.parse(this.results_table);

if (this.multiple == 'false') {
for (var i = 0; i < data.length; i++) {
var asset = data[i];
data.map(asset => {
var selectButton = dojo.byId(
this.searchCounter + asset.inode
);
Expand All @@ -1300,7 +1299,7 @@ dojo.declare(
selected(this, asset);
});
}
}
})
}

// Header based sorting functionality
Expand Down

0 comments on commit 8680b2b

Please sign in to comment.