mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Merge pull request #13073 from ctrlaltdavid/21861
Fix entity not highlighted in list after creating or undoing delete
This commit is contained in:
commit
49dbc73cd5
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ EntityListTool = function(opts) {
|
|||
|
||||
var selectedIDs = [];
|
||||
for (var j = 0; j < selectionManager.selections.length; j++) {
|
||||
selectedIDs.push(selectionManager.selections[j].id);
|
||||
selectedIDs.push(selectionManager.selections[j]);
|
||||
}
|
||||
|
||||
var data = {
|
||||
|
|
Loading…
Reference in a new issue