v1.3.48: remove internal invoke_url from invoke modal output

This commit is contained in:
“Naeel”
2026-05-04 06:59:25 +04:00
parent 4f6b4b87be
commit 6ac22d5f55
3 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ spec:
serviceAccountName: fission-console
containers:
- name: console
image: naeel/fission-console:v1.3.47
image: naeel/fission-console:v1.3.48
imagePullPolicy: Always
ports:
- containerPort: 8090
+2 -2
View File
@@ -102,7 +102,7 @@
<div class="nubes">NUBES</div>
<div class="product">FISSION CONSOLE</div>
</div>
<div style="font-size:0.65rem; color:var(--text-secondary); margin-left:10px; align-self:center; opacity:0.7;">v1.3.47</div>
<div style="font-size:0.65rem; color:var(--text-secondary); margin-left:10px; align-self:center; opacity:0.7;">v1.3.48</div>
</div>
<div class="row" style="margin:0;">
<button class="btn ghost" onclick="reloadAll()">Refresh</button>
@@ -462,7 +462,7 @@
</div>
<div class="actions" style="justify-content:space-between; align-items:center;">
<span style="font-size:0.75rem; color:var(--text-secondary);">v1.3.47</span>
<span style="font-size:0.75rem; color:var(--text-secondary);">v1.3.48</span>
<button class="btn ghost" onclick="closeHelp()">Закрыть</button>
</div>
</div>
+1 -2
View File
@@ -120,8 +120,7 @@ async function submitInvoke() {
metaEl.textContent = [
'HTTP status: ' + (result.status || 'n/a'),
'Latency: ' + (latencyMs || 'n/a') + ' ms',
'Причина задержки: ' + explainDelay(measuredSeconds),
'Invoke URL: ' + (result.invoke_url || 'n/a')
'Причина задержки: ' + explainDelay(measuredSeconds)
].join('\n');
respEl.value = JSON.stringify(result, null, 2);
} catch (e) {