Revert "Fix item type menuitem type attribute"

This reverts commit 6db62c6705.

Fixes #4106
This commit is contained in:
Abe Jellinek 2024-05-16 10:15:31 -04:00
parent 5be5ca9416
commit c7159a5fa6

View file

@ -33,6 +33,10 @@
}
class ItemTypeMenuList extends customElements.get("menulist") {
constructor() {
super();
}
connectedCallback() {
super.connectedCallback();
@ -61,8 +65,7 @@
for (let i = 0; i < itemTypes.length; i++) {
let name = itemTypes[i].name;
if (name != 'attachment' && name != 'note' && name != 'annotation') {
let menuitem = this.appendItem(itemTypes[i].localized, itemTypes[i].id);
menuitem.setAttribute('type', 'radio');
this.appendItem(itemTypes[i].localized, itemTypes[i].id);
}
}