Call reveal on a treelist target when it gets focused

pull/5421/head
Piotr Bogun 2026-01-05 22:54:47 -06:00
parent 92ca0eea83
commit cdc83afdee
1 changed files with 4 additions and 1 deletions

View File

@ -188,7 +188,10 @@
} else {
that._topList.find(".focus").removeClass("focus")
}
target.treeList.label.addClass('focus')
if (target.treeList.label) {
target.treeList.label.addClass('focus')
}
that.reveal(target);
}
});
this._data = [];