From 0a4f64143c08d8fd6fe1db22336f2b6b2ae4c197 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Sat, 9 May 2026 20:31:54 +0400 Subject: [PATCH] =?UTF-8?q?fix:=20clone=20=E2=80=94=20loadFunctions=20?= =?UTF-8?q?=E2=86=92=20reloadAll=20(v1.3.81)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- console/deploy/console.yaml | 2 +- console/ui/index.html | 4 ++-- console/ui/js/functions.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/console/deploy/console.yaml b/console/deploy/console.yaml index 90f8647..6cd7960 100644 --- a/console/deploy/console.yaml +++ b/console/deploy/console.yaml @@ -55,7 +55,7 @@ spec: serviceAccountName: fission-console containers: - name: console - image: naeel/fission-console:v1.3.80 + image: naeel/fission-console:v1.3.81 imagePullPolicy: Always ports: - containerPort: 8090 diff --git a/console/ui/index.html b/console/ui/index.html index bed1c5a..f7f065b 100644 --- a/console/ui/index.html +++ b/console/ui/index.html @@ -102,7 +102,7 @@
NUBES
FISSION CONSOLE
-
v1.3.80
+
v1.3.81
@@ -522,7 +522,7 @@
- v1.3.80 + v1.3.81
diff --git a/console/ui/js/functions.js b/console/ui/js/functions.js index c4448f1..32ccf43 100644 --- a/console/ui/js/functions.js +++ b/console/ui/js/functions.js @@ -460,7 +460,7 @@ async function submitClone() { // Успех — закрываем модалку, обновляем список closeEdit(); setStatus('Функция «' + newName + '» создана как копия «' + srcName + '»', false); - await loadFunctions(); + await reloadAll(); } catch(e) { if (errEl) { errEl.textContent = 'Сетевая ошибка: ' + e.message; errEl.style.display = 'block'; } } finally {