mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-05 18:38:17 -05:00
fix: update Functions page after deleting a function
The Functions page was not updating after a function was deleted. This was because the local `functions` variable was not being updated after a successful deletion. This commit fixes the bug by filtering the deleted function from the local `functions` array, which triggers a UI refresh.
This commit is contained in:
@@ -158,6 +158,7 @@
|
||||
|
||||
if (res) {
|
||||
toast.success($i18n.t('Function deleted successfully'));
|
||||
functions = functions.filter((f) => f.id !== func.id);
|
||||
|
||||
_functions.set(await getFunctions(localStorage.token));
|
||||
models.set(
|
||||
|
||||
Reference in New Issue
Block a user