fix: admin/plugins: wrong tooltip on options button
Massimo Melina committed
Apr 4, 2023 at 19:11 UTC
6ac74b28f854481d4639fd8a786e316efc4ac57c
1 file changed
+2
-1
admin/src/InstalledPlugins.ts
+2
-1
@@ -74,7 +74,8 @@ export default function InstalledPlugins({ updates }: { updates?: true }) {
74
h(IconBtn, {
75
icon: Settings,
76
title: "Options",
77
- disabled: !config && "No options available for this plugin",
77
+ disabled: !row.started && "Start plugin to access options"
78
+ || !config && "No options available for this plugin",
79
progress: false,
80
async onClick() {
81
const pl = await apiCall('get_plugin', { id })