File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
viplab-standalone-frontend-vue/src/pages/viplab Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 278
278
<b-tabs card class =" files" content-class =" m-2" lazy >
279
279
<!-- TODO: Filename verwenden -->
280
280
<b-tab
281
- :title =" 'OutputFile ' + artifactParent_index "
281
+ :title =" artifact.basename || artifact.path "
282
282
ref =" artifact"
283
283
class =" artifact"
284
284
v-for =" (
285
- artifact, artifactParent_index
285
+ artifact
286
286
) in filteredArtifacts(returnedOutputJson.artifacts)"
287
287
:key =" artifact.identifier"
288
288
>
@@ -1048,6 +1048,7 @@ export default {
1048
1048
if (! connectedVtks[currentBasename]) {
1049
1049
connectedVtks[currentBasename] = {};
1050
1050
connectedVtks[currentBasename].type = " s3file" ;
1051
+ connectedVtks[currentBasename].basename = currentBasename;
1051
1052
connectedVtks[currentBasename].urlsOrContents = [];
1052
1053
connectedVtks[currentBasename].plots = currentConfig .plots ;
1053
1054
connectedVtks[currentBasename].xlabel = currentConfig .xlabel ;
@@ -1069,6 +1070,7 @@ export default {
1069
1070
// console.log(currentBasename + " - " + filenamePart);
1070
1071
connectedVtks[currentBasename].type = artifacts[a].type ;
1071
1072
connectedVtks[currentBasename].MIMEtype = artifacts[a].MIMEtype ;
1073
+ connectedVtks[currentBasename].basename = currentBasename;
1072
1074
if (artifacts[a].url ) {
1073
1075
connectedVtks[currentBasename].urlsOrContents .push (artifacts[a].url );
1074
1076
} else {
You can’t perform that action at this time.
0 commit comments