diff options
author | Joas Schilling <coding@schilljs.com> | 2022-07-15 09:12:10 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-07-15 09:12:10 +0200 |
commit | def9e25967dd4070ab3f8ac81fe2fc947489c643 (patch) | |
tree | a4a90dde9e38995a7c3cde2fd724e2bb24288b1c /core/src/views | |
parent | 78d966c93562a3cc6150613e61ef436f8148f6b8 (diff) | |
download | nextcloud-server-def9e25967dd4070ab3f8ac81fe2fc947489c643.tar.gz nextcloud-server-def9e25967dd4070ab3f8ac81fe2fc947489c643.zip |
Fix HTML validation of material design icons
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/src/views')
-rw-r--r-- | core/src/views/Profile.vue | 10 |
1 files changed, 2 insertions, 8 deletions
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> |