diff options
author | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2023-03-30 14:52:24 +0200 |
---|---|---|
committer | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2023-03-30 14:52:24 +0200 |
commit | 1ad362aae60593b8b0bc50011067e78f91ac2ae5 (patch) | |
tree | b629a34a86d2ee6328361a6d3c4068f2f4a46277 /core/src | |
parent | 3e6e0753586d8ee636eabc45e244fc04904d1a75 (diff) | |
download | nextcloud-server-1ad362aae60593b8b0bc50011067e78f91ac2ae5.tar.gz nextcloud-server-1ad362aae60593b8b0bc50011067e78f91ac2ae5.zip |
Change contactsmenu structure to a list
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/OC/contactsmenu.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/src/OC/contactsmenu.js b/core/src/OC/contactsmenu.js index fdef787c877..05b9b08d63e 100644 --- a/core/src/OC/contactsmenu.js +++ b/core/src/OC/contactsmenu.js @@ -78,6 +78,9 @@ const ContactsListView = View.extend({ /** @type {array} */ _subViews: [], + /** @type {string} */ + tagName: 'ul', + /** * @param {object} options * @returns {undefined} @@ -129,6 +132,9 @@ const ContactsListItemView = View.extend({ /** @type {string} */ className: 'contact', + /** @type {string} */ + tagName: 'li', + /** @type {undefined|function} */ _template: undefined, |