1
0
Fork 0
mirror of synced 2024-07-04 22:11:23 +12:00

Merge branch 'master' into fix/swaggerapi-version

This commit is contained in:
Adria Navarro 2023-10-02 15:13:19 +02:00 committed by GitHub
commit 0f0b4d3535
2 changed files with 8 additions and 2 deletions

View file

@ -1,5 +1,5 @@
{
"version": "2.11.1",
"version": "2.11.2",
"npmClient": "yarn",
"packages": [
"packages/*"

View file

@ -3,6 +3,8 @@
import RelationshipCell from "./RelationshipCell.svelte"
import { FieldSubtype } from "@budibase/types"
export let api
const { API } = getContext("grid")
const { subtype } = $$props.schema
@ -17,8 +19,11 @@
throw `Search for '${subtype}' not implemented`
}
// As we are overriding the search function from RelationshipCell, we want to map one shape to the expected one for the specific API
const email = Object.values(searchParams.query.string)[0]
const results = await API.searchUsers({
...searchParams,
email,
})
// Mapping to the expected data within RelationshipCell
@ -31,6 +36,7 @@
</script>
<RelationshipCell
bind:api
{...$$props}
{schema}
{searchFunction}