(str: string, schemaProps: SpaceProperty[])
| 14 | } |
| 15 | |
| 16 | export const propFieldFromString = (str: string, schemaProps: SpaceProperty[]) => { |
| 17 | return schemaProps.find((f) => str == `${f.schemaId}.props.${f.name}`); |
| 18 | } |
| 19 | |
| 20 | export const nameForField = (field: SpaceProperty) => { |
| 21 | if (!field) return null; |
nothing calls this directly
no outgoing calls
no test coverage detected