Merge remote-tracking branch 'upstream/dev'

This commit is contained in:
thororen1234 2024-06-05 23:05:21 -04:00
commit 10d684a364
15 changed files with 546 additions and 60 deletions

View file

@ -261,8 +261,9 @@ export default function PluginSettings() {
plugins = [];
requiredPlugins = [];
const showApi = searchValue.value === "API";
for (const p of sortedPlugins) {
if (!p.options && p.name.endsWith("API") && searchValue.value !== "API")
if (p.hidden || (!p.options && p.name.endsWith("API") && !showApi))
continue;
if (!pluginFilter(p)) continue;