feat: formatting
- remove unneeded data props - prepare for compiler warnings vue3; see https://v3.vuejs.org/guide/migration/v-bind.html
This commit is contained in:
parent
4454e6cf22
commit
0da7a46612
15 changed files with 30 additions and 38 deletions
|
|
@ -11,9 +11,7 @@
|
|||
<navigation/>
|
||||
<div
|
||||
:class="[
|
||||
{
|
||||
'is-menu-enabled': menuActive,
|
||||
},
|
||||
{ 'is-menu-enabled': menuActive },
|
||||
$route.name,
|
||||
]"
|
||||
class="app-content"
|
||||
|
|
@ -58,10 +56,6 @@ export default {
|
|||
this.loadLabels()
|
||||
},
|
||||
computed: mapState({
|
||||
namespaces(state) {
|
||||
return state.namespaces.namespaces.filter(n => !n.isArchived)
|
||||
},
|
||||
currentList: CURRENT_LIST,
|
||||
background: 'background',
|
||||
menuActive: MENU_ACTIVE,
|
||||
userInfo: state => state.auth.info,
|
||||
|
|
|
|||
Reference in a new issue