This is an automated email from the ASF dual-hosted git repository. machristie pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git
commit 9e9f78f3a72c0da94f9504066e37be4eb891ef04 Author: Marcus Christie <[email protected]> AuthorDate: Tue May 7 18:00:00 2019 -0400 AIRAVATA-3031 Fixing typo checking if output is a file type --- .../js/components/experiment/ExperimentSummary.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/ExperimentSummary.vue b/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/ExperimentSummary.vue index 3cb63bb..123c07e 100644 --- a/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/ExperimentSummary.vue +++ b/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/ExperimentSummary.vue @@ -58,7 +58,7 @@ <template v-if="output.type.isSimpleValueType"> {{ output.value }} </template> - <template v-else-if="output.type.isFileValue"> + <template v-else-if="output.type.isFileValueType"> <data-product-viewer v-for="dp in getDataProducts(output, localFullExperiment.outputDataProducts)" :data-product="dp" class="data-product" :key="dp.productUri"/> </template>
