You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2019/12/05 20:00:45 UTC

[airavata-django-portal] branch master updated: AIRAVATA-3281 Fix typo

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


The following commit(s) were added to refs/heads/master by this push:
     new cdfe35b  AIRAVATA-3281 Fix typo
cdfe35b is described below

commit cdfe35bb95db2c68956d2b18cb75e138b7b5aa46
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Thu Dec 5 15:00:32 2019 -0500

    AIRAVATA-3281 Fix typo
---
 .../js/components/experiment/output-displays/DefaultOutputDisplay.vue | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/output-displays/DefaultOutputDisplay.vue b/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/output-displays/DefaultOutputDisplay.vue
index 25c1804..b41cbfd 100644
--- a/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/output-displays/DefaultOutputDisplay.vue
+++ b/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/output-displays/DefaultOutputDisplay.vue
@@ -36,8 +36,8 @@ export default {
       if (this.experimentOutput.fileMetadataMimeType) {
         return this.experimentOutput.fileMetadataMimeType;
       } else if (
-        this.experimentOutput.dataType === models.DataType.STDOUT ||
-        this.experimentOutput.dataType === models.DataType.STDERR
+        this.experimentOutput.type === models.DataType.STDOUT ||
+        this.experimentOutput.type === models.DataType.STDERR
       ) {
         return "text/plain";
       } else {