Not showing networks in overview when all children are either networks or independent channels.

This commit is contained in:
DebaucheryLibrarian 2020-09-05 04:08:10 +02:00
parent c96e10b33d
commit 5bf5be94bb
3 changed files with 7 additions and 5 deletions

View File

@ -64,11 +64,10 @@ export default {
}
.logo {
max-width: 100%;
max-height: 100%;
max-width: 100%;
max-height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.name {

View File

@ -18,7 +18,7 @@
</form>
<div
v-if="query.length"
v-if="query.length > 0"
class="entity-tiles"
>
<Entity
@ -31,7 +31,7 @@
</div>
<div
v-if="query.length === 0"
v-else
class="entity-tiles"
>
<Entity

View File

@ -185,6 +185,9 @@ function initEntitiesActions(store, _router) {
type: {
equalTo: "channel"
}
independent: {
notEqualTo: true
}
}
}
}