Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/privacy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Ehrke <georgehrke@users.noreply.github.com>2020-08-24 11:39:07 +0300
committerGitHub <noreply@github.com>2020-08-24 11:39:07 +0300
commit845360c6f63a082e6e489f4f91f7e7442763591e (patch)
treea94f2f5c7dbf55fcc7214d9c9e39d3666b6806fd
parent321817568da90c63569721fd7013203a4a751fc0 (diff)
parent841929c8e6b5d976876b960c0d9f940cdee2daa0 (diff)
Merge pull request #486 from nextcloud/bugfix/noid/no_status_in_user_privacy
Do not show user-status in privacy
-rw-r--r--src/components/Admins.vue3
-rw-r--r--src/components/Shares.vue3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/components/Admins.vue b/src/components/Admins.vue
index 0c00657..f9fe896 100644
--- a/src/components/Admins.vue
+++ b/src/components/Admins.vue
@@ -26,7 +26,8 @@
<Avatar :user="admin.internal ? admin.id : null"
:display-name="admin.displayname"
:size="64"
- :is-no-user="!admin.internal" />
+ :is-no-user="!admin.internal"
+ :show-user-status="false" />
<Actions v-if="!admin.internal">
<ActionButton icon="icon-close" @click="deleteAdditionalAdmin(admin)">
{{ $t('privacy', 'Remove external admin') }}
diff --git a/src/components/Shares.vue b/src/components/Shares.vue
index af7ccec..f5b9a34 100644
--- a/src/components/Shares.vue
+++ b/src/components/Shares.vue
@@ -29,7 +29,8 @@
:key="uid"
:user="uid"
:display-name="uidDisplaynameMap[uid]"
- :size="64" />
+ :size="64"
+ :show-user-status="false" />
</div>
</template>