Skip to content

Commit

Permalink
The form quick property inspector link works
Browse files Browse the repository at this point in the history
  • Loading branch information
yazz committed Oct 25, 2023
1 parent 68a905b commit 68f2112
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/runtimePipelineYazzUiTemplate.js
Original file line number Diff line number Diff line change
Expand Up @@ -2124,16 +2124,16 @@ Pushlist
<div v-for='form in getForms()' v-bind:refresh='refresh'>
<div>
<div v-bind:style='(((form.name == active_form) && (active_component_index == null) && (!model.app_selected)) ?"border: 0px solid red;background-color:gray;color:white;":"color:black;") + "padding:4px;margin:0px;margin-left:30px;border-radius: 3px;"'
v-on:click='$event.stopPropagation();selected_pane = "project";selectForm(form.name)'>
<div v-bind:style='(((form.name == active_form) && (active_component_index == null) && (!model.app_selected)) ?"border: 0px solid red;background-color:gray;color:white;":"color:black;") + "padding:4px;margin:0px;margin-left:30px;border-radius: 3px;"'>
<button v-on:click='selected_pane = "properties";chooseRight("properties");' v-if='((form.name == active_form) && (active_component_index == null) && (!model.app_selected))' type=button class='btn btn-sm btn-info' style="margin-right:5px">&uarr;</button>
<img
src='/driver_icons/form.png'
style='width: 20px; margin-right: 10px;'
class='img-fluid'>
</img>
{{form.name}} ({{form.components.length}})
<span v-on:click='$event.stopPropagation();selected_pane = "project";selectForm(form.name)'>{{form.name}} ({{form.components.length}})</span>
</div>
<div v-if='form.name == active_form'
Expand Down

0 comments on commit 68f2112

Please sign in to comment.