We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e86a66 commit 270ea99Copy full SHA for 270ea99
src/plugins/components/plugins.tsx
@@ -80,6 +80,7 @@ export default function Plugin() {
80
const request_search_in_plugin = () => {
81
if (current_tab() === 0 && link_from.id) {
82
set_is_loading(true);
83
+ set_is_working(true);
84
const plugin_id_list = Object.keys(INSTALLED_PLUGIN_DATA());
85
Promise.all(
86
plugin_id_list.map(plugin_id =>
@@ -95,6 +96,7 @@ export default function Plugin() {
95
96
})
97
.finally(() => {
98
set_is_loading(false);
99
+ set_is_working(false);
100
});
101
}
102
0 commit comments