Merge branch 'master' into builder-store-conversions-pc

This commit is contained in:
Peter Clement 2025-01-02 15:54:27 +00:00 committed by GitHub
commit 568aa9f55c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ {
"$schema": "node_modules/lerna/schemas/lerna-schema.json", "$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "3.2.29", "version": "3.2.32",
"npmClient": "yarn", "npmClient": "yarn",
"concurrency": 20, "concurrency": 20,
"command": { "command": {

View File

@ -291,8 +291,8 @@ const automationActions = (store: AutomationStore) => ({
let result: (AutomationStep | AutomationTrigger)[] = [] let result: (AutomationStep | AutomationTrigger)[] = []
pathWay.forEach(path => { pathWay.forEach(path => {
const { stepIdx, branchIdx } = path const { stepIdx, branchIdx } = path
let last = result ? result[result.length - 1] : [] let last = result.length ? result[result.length - 1] : []
if (!result) { if (!result.length) {
// Preceeding steps. // Preceeding steps.
result = steps.slice(0, stepIdx + 1) result = steps.slice(0, stepIdx + 1)
return return

View File

@ -26,7 +26,7 @@
: RelationshipType.MANY_TO_MANY, : RelationshipType.MANY_TO_MANY,
} }
async function searchFunction(searchParams) { async function searchFunction(_tableId, searchParams) {
if ( if (
subtype !== BBReferenceFieldSubType.USER && subtype !== BBReferenceFieldSubType.USER &&
subtype !== BBReferenceFieldSubType.USERS subtype !== BBReferenceFieldSubType.USERS