diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-03-01 22:49:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-01 22:49:29 +0100 |
commit | 1cfa870821c92bdd6854171c8c073ed16529b6df (patch) | |
tree | 76a26e5351c5583290b8656741de7885a928593c /settings/src/components/AuthTokenList.vue | |
parent | ba155a98db1a03e328972ae3737097eb4d300092 (diff) | |
parent | 102f700d96556424e4b59fcc9fadd65c1a377225 (diff) | |
download | nextcloud-server-1cfa870821c92bdd6854171c8c073ed16529b6df.tar.gz nextcloud-server-1cfa870821c92bdd6854171c8c073ed16529b6df.zip |
Merge pull request #14457 from nextcloud/refactor/auth-tokens-initial-state
Load auth tokens with the initial state API
Diffstat (limited to 'settings/src/components/AuthTokenList.vue')
-rw-r--r-- | settings/src/components/AuthTokenList.vue | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/settings/src/components/AuthTokenList.vue b/settings/src/components/AuthTokenList.vue index fe92852921c..1c83488ed19 100644 --- a/settings/src/components/AuthTokenList.vue +++ b/settings/src/components/AuthTokenList.vue @@ -20,7 +20,7 @@ --> <template> - <table id="app-tokens-table" :class="{ 'icon-loading' : loading }"> + <table id="app-tokens-table"> <thead v-if="tokens.length"> <tr> <th></th> @@ -52,10 +52,6 @@ tokens: { type: Array, required: true, - }, - loading: { - type: Boolean, - required: true, } }, computed: { |