This commit is contained in:
xiaojunnuo
2024-12-03 00:35:34 +08:00
parent 66b95d52fd
commit 4e768ec50f
2 changed files with 9 additions and 1 deletions

View File

@@ -34,6 +34,13 @@ export class PluginService extends BaseService<PluginEntity> {
async getEnabledBuildInGroup() {
const groups = this.builtInPluginService.getGroups();
for (const key in groups) {
const group = groups[key];
group.plugins.forEach(item => {
delete item.input;
});
}
if (!isComm()) {
return groups;
}