We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8290509 commit 2feb0e2Copy full SHA for 2feb0e2
components/hubspot/actions/search-crm/search-crm.mjs
@@ -50,7 +50,7 @@ export default {
50
props.customObjectType = {
51
type: "string",
52
label: "Custom Object Type",
53
- options: await this.getCustomObjectTypes(),
+ options: async () => await this.getCustomObjectTypes(),
54
reloadProps: true,
55
};
56
} catch {
@@ -185,7 +185,7 @@ export default {
185
}
186
},
187
async getCustomObjectTypes() {
188
- const { results } = await this.listSchemas();
+ const { results } = await this.hubspot.listSchemas();
189
return results?.map(({
190
fullyQualifiedName: value, labels,
191
}) => ({
0 commit comments