diff --git a/package.json b/package.json index 760897476..eabb3cf22 100644 --- a/package.json +++ b/package.json @@ -9,10 +9,12 @@ }, "dependencies": { "bulma": "0.8.2", + "camel-case": "^4.1.1", "copy-to-clipboard": "3.3.1", "date-fns": "2.12.0", "lodash": "4.17.15", "register-service-worker": "1.7.1", + "snake-case": "^3.0.3", "v-tooltip": "2.0.3", "verte": "0.0.12", "vue": "2.6.11", diff --git a/src/App.vue b/src/App.vue index 6b2209e98..c8367591f 100644 --- a/src/App.vue +++ b/src/App.vue @@ -126,10 +126,10 @@ @@ -140,10 +140,10 @@
  • - + {{l.title}} - + Archived @@ -301,7 +301,7 @@ }, loadNamespaces() { this.namespaceService = new NamespaceService() - this.namespaceService.getAll({}, {is_archived: this.showArchived}) + this.namespaceService.getAll({}, {isArchived: this.showArchived}) .then(r => { this.$set(this, 'namespaces', r) }) diff --git a/src/components/labels/ListLabels.vue b/src/components/labels/ListLabels.vue index 6990bfd6a..2bb1cddb4 100644 --- a/src/components/labels/ListLabels.vue +++ b/src/components/labels/ListLabels.vue @@ -10,11 +10,11 @@ {{ l.title }} @@ -24,7 +24,7 @@ v-else> {{ l.title }} - +
    @@ -57,7 +57,7 @@
    -
    +
    This list is archived. It is not possible to create new or edit tasks or it.
    @@ -28,7 +28,7 @@
    - + This list is archived
    @@ -37,7 +37,7 @@

    {{ list.title === '' ? 'Loading...': list.title}}

    -
    +
    This list is archived. It is not possible to create new or edit tasks or it.
    diff --git a/src/components/namespaces/EditNamespace.vue b/src/components/namespaces/EditNamespace.vue index 9cbfaedfc..1b6e57016 100644 --- a/src/components/namespaces/EditNamespace.vue +++ b/src/components/namespaces/EditNamespace.vue @@ -1,6 +1,6 @@