Skip to content

Commit

Permalink
AMP-3053:
Browse files Browse the repository at this point in the history
- fix output links for PFile and MGM test vis page
  • Loading branch information
yingfeng-iu committed Nov 2, 2023
1 parent 5153ac5 commit d8dd9fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/entity/OutputFile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<!-- -->
<tr v-for="output in listOfOutputList" :key="output.id">
<td>
<!-- <input type="text" :value="12/28/2021" class="form-control" disabled /> -->
<!-- <input type="text" :value="12/28/2021" class="form-control" disabled /> -->
<p>{{ new Date(output.dateCreated) | LOCAL_DATE_VALUE }}</p>
</td>
<td>
Expand Down Expand Up @@ -73,7 +73,7 @@
disabled
/> -->
<a
@click="workflowResultService.getSymlinkContent(output, true, $event)"
@click="workflowResultService.getSymlinkContent(output, true, null, $event)"
class="complete-output"
target="_blank"
v-if="
Expand Down
4 changes: 2 additions & 2 deletions src/components/evaluation/TestResultsVisualiz.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@
<h6>
<a
class="scores-files"
@click="workflowResultService.getSymlinkContent(testResult.workflowResult, false, $event)"
@click="workflowResultService.getSymlinkContent(testResult.workflowResult, false, null, $event)"
target="_blank"
>{{ testResult.primaryFilename }}</a
>
(<a
class="scores-files"
@click="workflowResultService.getSymlinkContent(testResult.workflowResult, true, $event)"
@click="workflowResultService.getSymlinkContent(testResult.workflowResult, true, null, $event)"
target="_blank"
>{{
testResult.workflowResult.workflowStep
Expand Down

0 comments on commit d8dd9fe

Please sign in to comment.