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 2016/01/07 19:13:04 UTC

airavata-php-gateway git commit: setting defaule value in is_data_staged to false

Repository: airavata-php-gateway
Updated Branches:
  refs/heads/master 0d8fb566e -> d131087f5


setting defaule value in is_data_staged to false


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/d131087f
Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/d131087f
Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/d131087f

Branch: refs/heads/master
Commit: d131087f56ee4ae9ae81193d3fe43383a07c4cab
Parents: 0d8fb56
Author: scnakandala <su...@gmail.com>
Authored: Thu Jan 7 13:13:00 2016 -0500
Committer: scnakandala <su...@gmail.com>
Committed: Thu Jan 7 13:13:00 2016 -0500

----------------------------------------------------------------------
 app/views/partials/interface-input-block.blade.php | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/d131087f/app/views/partials/interface-input-block.blade.php
----------------------------------------------------------------------
diff --git a/app/views/partials/interface-input-block.blade.php b/app/views/partials/interface-input-block.blade.php
index ca02ca9..0906d88 100644
--- a/app/views/partials/interface-input-block.blade.php
+++ b/app/views/partials/interface-input-block.blade.php
@@ -74,11 +74,10 @@
 
         <div class="col-md-8">
             <select name="dataStaged[]" readonly class="form-control">
-                <option>select</option>
+                <option value="0"
+                        @if( isset( $appInputs) ) @if( $appInputs->dataStaged == 0) selected @endif @endif>False</option>
                 <option value="1"
                 @if( isset( $appInputs) ) @if( $appInputs->dataStaged == 1) selected @endif @endif>True</option>
-                <option value="0"
-                @if( isset( $appInputs) ) @if( $appInputs->dataStaged == 0) selected @endif @endif>False</option>
             </select>
         </div>
         <!-- Removed Radio button because it creates problems with multiple inputs