Skip to content

Commit

Permalink
cleaning up "Add custom action"
Browse files Browse the repository at this point in the history
  • Loading branch information
yazz committed Oct 21, 2023
1 parent c6a95e2 commit 89367cf
Showing 1 changed file with 30 additions and 21 deletions.
51 changes: 30 additions & 21 deletions src/runtimePipelineYazzUiTemplate.js
Original file line number Diff line number Diff line change
Expand Up @@ -2417,7 +2417,7 @@ Pushlist
<input style='font-family:verdana,helvetica;font-size: 13px;'
class='col-md-7 small'
placeholder='background_color'
v-bind:placeholder='(new_property_type=="Action")?"doAction":"background_color"'
v-model='new_property_id'>
</input>
</div>
Expand All @@ -2429,13 +2429,41 @@ Pushlist
</div>
<input class='col-md-7 small'
placeholder='Background Color'
v-bind:placeholder='(new_property_type=="Action")?"Do Action":"Background Color"'
style='border:0px;font-family:verdana,helvetica;font-size: 13px;'
v-model='new_property_name'>
</input>
</div>
<div v-if='(model.app_selected) && (add_property)' class='row'>
<div style='font-family:verdana,helvetica;font-size: 13px;'
class='col-md-4'>
Type
</div>
<select class='col-md-7 small'
style='border:0px;font-family:verdana,helvetica;font-size: 13px;'
v-model='new_property_type'>
<option v-bind:selected='new_property_type=="String"' value="String">String</option>
<option v-bind:selected='new_property_type=="Number"' value="Number">Number</option>
<option v-bind:selected='new_property_type=="Array"' value="Array">Array</option>
<option v-bind:selected='new_property_type=="Object"' value="Object">Object</option>
<option v-bind:selected='new_property_type=="Action"' value="Action">Action</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;'
class='col-md-4'>
Expand Down Expand Up @@ -2487,25 +2515,6 @@ Pushlist
<div v-if='(model.app_selected) && (add_property)' class='row'>
<div style='font-family:verdana,helvetica;font-size: 13px;'
class='col-md-4'>
Type
</div>
<select class='col-md-7 small'
style='border:0px;font-family:verdana,helvetica;font-size: 13px;'
v-model='new_property_type'>
<option v-bind:selected='new_property_type=="String"' value="String">String</option>
<option v-bind:selected='new_property_type=="Number"' value="Number">Number</option>
<option v-bind:selected='new_property_type=="Array"' value="Array">Array</option>
<option v-bind:selected='new_property_type=="Object"' value="Object">Object</option>
<option v-bind:selected='new_property_type=="Action"' value="Action">Action</option>
</select>
</div>
Expand Down

0 comments on commit 89367cf

Please sign in to comment.