You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sc...@apache.org on 2015/10/06 12:53:16 UTC

airavata-php-gateway git commit: Fixing AIRAVATA-1806

Repository: airavata-php-gateway
Updated Branches:
  refs/heads/master 0909397d5 -> 7f17e30d9


Fixing AIRAVATA-1806


Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo
Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/7f17e30d
Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/7f17e30d
Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/7f17e30d

Branch: refs/heads/master
Commit: 7f17e30d96eadfc74b77248522ff4691bbb45bdf
Parents: 0909397
Author: scnakandala <su...@gmail.com>
Authored: Tue Oct 6 06:52:43 2015 -0400
Committer: scnakandala <su...@gmail.com>
Committed: Tue Oct 6 06:52:43 2015 -0400

----------------------------------------------------------------------
 app/views/partials/experiment-inputs.blade.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/7f17e30d/app/views/partials/experiment-inputs.blade.php
----------------------------------------------------------------------
diff --git a/app/views/partials/experiment-inputs.blade.php b/app/views/partials/experiment-inputs.blade.php
index 90e7e88..f708f8b 100644
--- a/app/views/partials/experiment-inputs.blade.php
+++ b/app/views/partials/experiment-inputs.blade.php
@@ -51,7 +51,7 @@
             <label class="control-label" for="compute-resource">Compute Resource</label>
             @if( count( $expInputs['computeResources']) > 0)
             <select class="form-control" name="compute-resource" id="compute-resource" required="required">
-                <option value="">Select a resource</option>
+                {{--<option value="">Select a resource</option>--}}
                 @foreach ($expInputs['computeResources'] as $id => $name)
                 <option value="{{$id}}"
                 {{ ($expInputs['resourceHostId'] == $id)? ' selected' : '' }}>{{$name}}</option>