Skip to content

Commit

Permalink
Cleaning up UI for new app property
Browse files Browse the repository at this point in the history
  • Loading branch information
yazz committed Oct 21, 2023
1 parent f746ae3 commit dd1d24b
Showing 1 changed file with 29 additions and 17 deletions.
46 changes: 29 additions & 17 deletions src/runtimePipelineYazzUiTemplate.js
Original file line number Diff line number Diff line change
Expand Up @@ -2509,6 +2509,34 @@ Pushlist
</div></div></div></div></div>
<!-- --------------------
NEW PROPERTY ASYNC METHOD
-------------------- -->
<div v-if='(model.app_selected) && (add_property)'
style='font-family:verdana,helvetica;font-size: 13px;border-bottom: 1px solid lightgray;padding:0px;margin:0px;'>
<div style='width:100%;padding:0px;margin:0px;display:flex;' >
<div v-bind:style='"text-overflow: ellipsis;white-space: pre-line;vertical-align: top;display:flex;width:40%;margin: 0px;font-family:verdana,helvetica;font-size: 13px;padding-left: 1px;padding-top:0px;padding-bottom:0px;"'
>Async</div>
<div style='display:flex;width:57%;padding:0px;padding-left:3px; border-left: 1px solid lightgray;'>
<div style="width:100%">
<div>
<select class='col-md-7 small'
style='width: 100%;border: 0px;font-family:verdana,helvetica;font-size: 13px;padding:0px;'
v-model='new_async'>
<option v-bind:selected='new_async=="true"' value="True">True</option>
<option v-bind:selected='new_async=="false"' value="False">False</option>
</select>
</div></div></div></div></div>
</div>
Expand All @@ -2528,23 +2556,7 @@ Pushlist
<div v-if='(model.app_selected) && (add_property) && (new_property_type=="Action")' class='row'>
<div style='font-family:verdana,helvetica;font-size: 13px;'
class='col-md-4'>
Async
</div>
<select class='col-md-7 small'
style='border:0px;font-family:verdana,helvetica;font-size: 13px;'
v-model='new_async'>
<option v-bind:selected='new_async=="true"' value="True">True</option>
<option v-bind:selected='new_async=="false"' value="False">False</option>
</select>
</div>
<div v-if='(model.app_selected) && (add_property) && (new_property_type=="Action")' class='row'>
<div style='font-family:verdana,helvetica;font-size: 13px;'
Expand Down

0 comments on commit dd1d24b

Please sign in to comment.