fix: clone — delay 800ms before reloadAll to avoid race with k8s list (v1.3.83)

This commit is contained in:
“Naeel”
2026-05-09 20:44:05 +04:00
parent 26728aadbe
commit 47caff5c7e
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -451,7 +451,7 @@ async function submitClone() {
// Успех — закрываем модалку, обновляем список
closeEdit();
setStatus('Функция «' + newName + '» создана как копия «' + srcName + '»', false);
await reloadAll();
setTimeout(function() { reloadAll(); }, 800);
} catch(e) {
if (errEl) { errEl.textContent = e.message; errEl.style.display = 'block'; }
} finally {