Exclude custom options from update settings (#12648)
* Exclude custom options from update settings * Custom options label * Remove unnecessary div
This commit is contained in:
parent
5092ef8513
commit
843f134165
|
@ -25,7 +25,6 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="options-wrap">
|
<div class="options-wrap">
|
||||||
<div />
|
|
||||||
<div><ActionButton on:click={drawer.show}>Define Options</ActionButton></div>
|
<div><ActionButton on:click={drawer.show}>Define Options</ActionButton></div>
|
||||||
</div>
|
</div>
|
||||||
<Drawer bind:this={drawer} title="Options" on:drawerHide on:drawerShow>
|
<Drawer bind:this={drawer} title="Options" on:drawerHide on:drawerShow>
|
||||||
|
|
|
@ -3295,6 +3295,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "options",
|
"type": "options",
|
||||||
|
"label": "Custom options",
|
||||||
"key": "customOptions",
|
"key": "customOptions",
|
||||||
"dependsOn": {
|
"dependsOn": {
|
||||||
"setting": "optionsSource",
|
"setting": "optionsSource",
|
||||||
|
@ -3502,6 +3503,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "options",
|
"type": "options",
|
||||||
|
"label": "Custom options",
|
||||||
"key": "customOptions",
|
"key": "customOptions",
|
||||||
"dependsOn": {
|
"dependsOn": {
|
||||||
"setting": "optionsSource",
|
"setting": "optionsSource",
|
||||||
|
|
Loading…
Reference in New Issue