Fix filtering for uncategoized on main page tile

This commit is contained in:
Michael Zanetti 2020-04-05 19:37:29 +02:00
parent 8a256d9bbb
commit bc2ad71691

View File

@ -101,7 +101,8 @@ MainPageTile {
DevicesProxy {
id: devicesProxy
engine: _engine
shownInterfaces: [iface.name]
shownInterfaces: iface ? [iface.name] : []
hiddenInterfaces: iface ? [] : app.supportedInterfaces
}
DevicesProxy {