Skip to content

Commit

Permalink
Merge pull request #546 from AudiovisualMetadataPlatform/AMP-3356_del…
Browse files Browse the repository at this point in the history
…eteSup

AMP-3356: rename MET fields
  • Loading branch information
yingfeng-iu authored Nov 5, 2024
2 parents 43130eb + 7aa6764 commit f870444
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/evaluation/TestResultsVisualiz.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
class="scores-files"
@click="workflowResultService.getSymlinkContent(testResult.workflowResult, false, null, $event)"
target="_blank"
>{{ testResult.primaryFilename }}</a
>{{ testResult.primaryfileName }}</a
>
(<a
class="scores-files"
Expand Down Expand Up @@ -151,7 +151,7 @@
:key="testResult.id"
>
<th scope="row">
{{ testResult.primaryFilename }}
{{ testResult.primaryfileName }}
</th>
<td>
{{
Expand Down Expand Up @@ -257,7 +257,7 @@
name="optradio"
v-model="selectedTestResult"
:value="testResult"
/>{{ testResult.primaryFilename }}
/>{{ testResult.primaryfileName }}
</label>
</div>
</div>
Expand Down Expand Up @@ -575,7 +575,7 @@ export default {
};
for (let i = 0; i < self.mgmEvaluationTests.length; i++) {
self.barChartData.datasets.push({
label: self.mgmEvaluationTests[i].primaryFilename,
label: self.mgmEvaluationTests[i].primaryfileName,
backgroundColor: `rgba(${Math.floor(
Math.random() * 256
)}, ${Math.floor(Math.random() * 256)}, ${Math.floor(
Expand Down

0 comments on commit f870444

Please sign in to comment.