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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings/src/components/PersonalInfo/ProfileSection/ProfileSection.vue')
-rw-r--r--apps/settings/src/components/PersonalInfo/ProfileSection/ProfileSection.vue5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/settings/src/components/PersonalInfo/ProfileSection/ProfileSection.vue b/apps/settings/src/components/PersonalInfo/ProfileSection/ProfileSection.vue
index 059233c9396..f33b332aadb 100644
--- a/apps/settings/src/components/PersonalInfo/ProfileSection/ProfileSection.vue
+++ b/apps/settings/src/components/PersonalInfo/ProfileSection/ProfileSection.vue
@@ -33,6 +33,9 @@
:display-name="displayName"
:profile-enabled="profileEnabled"
:user-id="userId" />
+
+ <EditProfileAnchorLink
+ :profile-enabled="profileEnabled" />
</section>
</template>
@@ -40,6 +43,7 @@
import { loadState } from '@nextcloud/initial-state'
import { subscribe, unsubscribe } from '@nextcloud/event-bus'
+import EditProfileAnchorLink from './EditProfileAnchorLink'
import HeaderBar from '../shared/HeaderBar'
import ProfileCheckbox from './ProfileCheckbox'
import ProfilePreviewCard from './ProfilePreviewCard'
@@ -57,6 +61,7 @@ export default {
name: 'ProfileSection',
components: {
+ EditProfileAnchorLink,
HeaderBar,
ProfileCheckbox,
ProfilePreviewCard,