v1.3.52: fix archive name display — remove package name fallback
This commit is contained in:
@@ -52,7 +52,7 @@ spec:
|
|||||||
serviceAccountName: fission-console
|
serviceAccountName: fission-console
|
||||||
containers:
|
containers:
|
||||||
- name: console
|
- name: console
|
||||||
image: naeel/fission-console:v1.3.51
|
image: naeel/fission-console:v1.3.52
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8090
|
- containerPort: 8090
|
||||||
|
|||||||
@@ -102,7 +102,7 @@
|
|||||||
<div class="nubes">NUBES</div>
|
<div class="nubes">NUBES</div>
|
||||||
<div class="product">FISSION CONSOLE</div>
|
<div class="product">FISSION CONSOLE</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="font-size:0.65rem; color:var(--text-secondary); margin-left:10px; align-self:center; opacity:0.7;">v1.3.51</div>
|
<div style="font-size:0.65rem; color:var(--text-secondary); margin-left:10px; align-self:center; opacity:0.7;">v1.3.52</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row" style="margin:0;">
|
<div class="row" style="margin:0;">
|
||||||
<button class="btn ghost" onclick="reloadAll()">Refresh</button>
|
<button class="btn ghost" onclick="reloadAll()">Refresh</button>
|
||||||
@@ -462,7 +462,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="actions" style="justify-content:space-between; align-items:center;">
|
<div class="actions" style="justify-content:space-between; align-items:center;">
|
||||||
<span style="font-size:0.75rem; color:var(--text-secondary);">v1.3.51</span>
|
<span style="font-size:0.75rem; color:var(--text-secondary);">v1.3.52</span>
|
||||||
<button class="btn ghost" onclick="closeHelp()">Закрыть</button>
|
<button class="btn ghost" onclick="closeHelp()">Закрыть</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -150,7 +150,7 @@ async function openEdit(name) {
|
|||||||
if (fn.source_type === 'archive') {
|
if (fn.source_type === 'archive') {
|
||||||
setCodeMode('e', 'archive');
|
setCodeMode('e', 'archive');
|
||||||
var archiveNameEl = document.getElementById('e-archive-name');
|
var archiveNameEl = document.getElementById('e-archive-name');
|
||||||
if (archiveNameEl) archiveNameEl.textContent = fn.archive_filename || fn.package || 'архив';
|
if (archiveNameEl) archiveNameEl.textContent = fn.archive_filename || 'архив';
|
||||||
var archiveFile = document.getElementById('e-archive-file');
|
var archiveFile = document.getElementById('e-archive-file');
|
||||||
if (archiveFile) archiveFile.value = '';
|
if (archiveFile) archiveFile.value = '';
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user