1
0
Fork 0
mirror of synced 2024-09-20 11:27:56 +12:00

Removed placeholder from row data picker, fix for stuck row selector in testmodal and old field test config fixes

This commit is contained in:
Dean 2024-07-05 15:33:08 +01:00
parent 581721caf7
commit c12a8f03e9
2 changed files with 29 additions and 23 deletions

View file

@ -250,6 +250,7 @@
}, },
})) }))
}, },
placeholder: false,
getOptionLabel: type => type.name, getOptionLabel: type => type.name,
getOptionValue: type => type.id, getOptionValue: type => type.id,
options: [ options: [
@ -280,14 +281,14 @@
tableId: inputData["row"].tableId, tableId: inputData["row"].tableId,
}, },
meta: { meta: {
fields: inputData["meta"].oldFields || {}, fields: inputData["meta"]?.oldFields || {},
}, },
onChange: e => { onChange: e => {
onChange({ onChange({
oldRow: e.detail.row, oldRow: e.detail.row,
meta: { meta: {
fields: inputData["meta"].fields, fields: inputData["meta"]?.fields || {},
oldFields: e.detail.meta.fields, oldFields: e.detail?.meta?.fields || {},
}, },
}) })
}, },
@ -304,7 +305,15 @@
row: inputData["row"], row: inputData["row"],
meta: inputData["meta"] || {}, meta: inputData["meta"] || {},
onChange: e => { onChange: e => {
onChange(e.detail) onChange({
row: e.detail.row,
meta: {
fields: e.detail?.meta?.fields || {},
...(isTestModal
? { oldFields: inputData["meta"]?.oldFields || {} }
: {}),
},
})
}, },
...baseProps, ...baseProps,
}, },
@ -452,7 +461,6 @@
*/ */
const onChange = Utils.sequential(async update => { const onChange = Utils.sequential(async update => {
const request = cloneDeep(update) const request = cloneDeep(update)
// Process app trigger updates // Process app trigger updates
if (isTrigger && !isTestModal) { if (isTrigger && !isTestModal) {
// Row trigger // Row trigger

View file

@ -288,7 +288,6 @@
{/each} {/each}
{#if table && schemaFields} {#if table && schemaFields}
{#key editableFields}
<div <div
class="add-fields-btn" class="add-fields-btn"
class:empty={Object.is(editableFields, {})} class:empty={Object.is(editableFields, {})}
@ -304,13 +303,12 @@
>Add fields >Add fields
</ActionButton> </ActionButton>
</div> </div>
{/key}
{/if} {/if}
<Popover <Popover
align="center" align="center"
bind:this={customPopover} bind:this={customPopover}
anchor={popoverAnchor} anchor={editableFields ? popoverAnchor : null}
useAnchorWidth useAnchorWidth
maxHeight={300} maxHeight={300}
resizable={false} resizable={false}