mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
fix double click selection
This commit is contained in:
parent
776b8b8fc7
commit
8e1cfb5a06
1 changed files with 6 additions and 1 deletions
|
@ -239,11 +239,16 @@ function loaded() {
|
|||
}
|
||||
|
||||
function onRowDoubleClicked() {
|
||||
let selection = [this.dataset.entityID];
|
||||
updateSelectedEntities(selection, false);
|
||||
|
||||
EventBridge.emitWebEvent(JSON.stringify({
|
||||
type: "selectionUpdate",
|
||||
focus: true,
|
||||
entityIds: [this.dataset.entityID],
|
||||
entityIds: selection,
|
||||
}));
|
||||
|
||||
refreshFooter();
|
||||
}
|
||||
|
||||
function decimalMegabytes(number) {
|
||||
|
|
Loading…
Reference in a new issue