diff options
author | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2023-03-14 14:07:02 +0100 |
---|---|---|
committer | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2023-03-24 08:49:19 +0100 |
commit | 85feae6d822e3851166a131ba569548b0e18802a (patch) | |
tree | 33318254711e7ebadf13678163429dba3c31548c /apps/settings/js | |
parent | 97b8e6d2a388cd08bd83ee08b1d322b9e813387a (diff) | |
download | nextcloud-server-85feae6d822e3851166a131ba569548b0e18802a.tar.gz nextcloud-server-85feae6d822e3851166a131ba569548b0e18802a.zip |
Create `<h3>` headings for profile page. Replace `<label>` which have no conncted `<input>` with `<h3>` heading
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Diffstat (limited to 'apps/settings/js')
-rw-r--r-- | apps/settings/js/federationsettingsview.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings/js/federationsettingsview.js b/apps/settings/js/federationsettingsview.js index a4a1a31223e..50b8bd84c59 100644 --- a/apps/settings/js/federationsettingsview.js +++ b/apps/settings/js/federationsettingsview.js @@ -82,7 +82,7 @@ ]; _.each(this._inputFields, function(field) { - var $icon = self.$('#' + field + 'form h3 > .federation-menu'); + var $icon = self.$('#' + field + 'form .headerbar-label > .federation-menu'); var excludedScopes = [] if (fieldsWithV2Private.indexOf(field) === -1) { @@ -245,7 +245,7 @@ }, _setFieldScopeIcon: function(field, scope) { - var $icon = this.$('#' + field + 'form > h3 .icon-federation-menu'); + var $icon = this.$('#' + field + 'form > .headerbar-label .icon-federation-menu'); $icon.removeClass('icon-phone'); $icon.removeClass('icon-password'); |