Fix bar select not displaying text after start

fixes #690
This commit is contained in:
JannisX11 2020-07-26 23:17:31 +02:00
parent 65b1937401
commit f96e1b2835

View File

@ -820,6 +820,9 @@ class BarSelect extends Widget {
this.nodes.forEach(node => {
$(node).find('bb-select').text(name)
})
if (!this.nodes.includes(this.node)) {
$(this.node).find('bb-select').text(name)
}
return this;
}
get() {