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:
authorJoas Schilling <coding@schilljs.com>2022-07-15 10:12:10 +0300
committerJoas Schilling <coding@schilljs.com>2022-07-15 10:12:10 +0300
commitdef9e25967dd4070ab3f8ac81fe2fc947489c643 (patch)
treea4a90dde9e38995a7c3cde2fd724e2bb24288b1c
parent78d966c93562a3cc6150613e61ef436f8148f6b8 (diff)
Fix HTML validation of material design icons
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--apps/settings/src/components/PersonalInfo/ProfileSection/EditProfileAnchorLink.vue2
-rw-r--r--core/src/views/Profile.vue10
2 files changed, 2 insertions, 10 deletions
diff --git a/apps/settings/src/components/PersonalInfo/ProfileSection/EditProfileAnchorLink.vue b/apps/settings/src/components/PersonalInfo/ProfileSection/EditProfileAnchorLink.vue
index 1ee3bc0e149..61a7bfc908d 100644
--- a/apps/settings/src/components/PersonalInfo/ProfileSection/EditProfileAnchorLink.vue
+++ b/apps/settings/src/components/PersonalInfo/ProfileSection/EditProfileAnchorLink.vue
@@ -25,8 +25,6 @@
href="#profile-visibility"
v-on="$listeners">
<ChevronDownIcon class="anchor-icon"
- decorative
- title=""
:size="22" />
{{ t('settings', 'Edit your Profile visibility') }}
</a>
diff --git a/core/src/views/Profile.vue b/core/src/views/Profile.vue
index 9173e5bb820..bf58a89c32e 100644
--- a/core/src/views/Profile.vue
+++ b/core/src/views/Profile.vue
@@ -32,8 +32,6 @@
class="primary profile__header__container__edit-button"
:href="settingsUrl">
<PencilIcon class="pencil-icon"
- decorative
- title=""
:size="16" />
{{ t('core', 'Edit Profile') }}
</a>
@@ -114,8 +112,6 @@
<div v-if="address" class="detail">
<p>
<MapMarkerIcon class="map-icon"
- decorative
- title=""
:size="16" />
{{ address }}
</p>
@@ -131,10 +127,8 @@
</template>
<template v-else>
<div class="profile__blocks-empty-info">
- <AccountIcon decorative
- title=""
- fill-color="var(--color-text-maxcontrast)"
- :size="60" />
+ <AccountIcon :size="60"
+ fill-color="var(--color-text-maxcontrast)" />
<h3>{{ emptyProfileMessage }}</h3>
<p>{{ t('core', 'The headline and about sections will show up here') }}</p>
</div>