Browse Source

change Convert.. input (#3246)

pull/3199/head
NyaamZ 7 months ago committed by GitHub
parent
commit
2bef134ebf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 17
      web/extensions/core/widgetInputs.js

17
web/extensions/core/widgetInputs.js

@ -292,12 +292,23 @@ app.registerExtension({
}
}
}
//Convert.. main menu
if (toInput.length) {
options.push(...toInput, null);
options.push({
content: `Convert input to 🔘..`,
submenu: {
options: toInput,
},
});
}
if (toWidget.length) {
options.push(...toWidget, null);
options.push({
content: `Convert 🔘 to widget..`,
submenu: {
options: toWidget,
},
});
}
}

Loading…
Cancel
Save