change Convert.. input (#3246)

This commit is contained in:
NyaamZ 2024-04-13 06:02:17 +09:00 committed by GitHub
parent 4bd7d55b90
commit 2bef134ebf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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