Skip to content

Commit c5a99d4

Browse files
committed
Fixes
1 parent 9b34452 commit c5a99d4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

components/gainsight_nxt/actions/create-or-update-company/create-or-update-company.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default {
2121
},
2222
arr: {
2323
type: "string",
24-
label: "Anual Recurring Revenue (ARR)",
24+
label: "Annual Recurring Revenue (ARR)",
2525
description: "The annual recurring revenue of the company, as a currency value.",
2626
optional: true,
2727
},
@@ -40,13 +40,13 @@ export default {
4040
originalContractDate: {
4141
type: "string",
4242
label: "Original Contract Date",
43-
description: "The date the engagement with the client started.",
43+
description: "The date the engagement with the client started, in `YYYY-MM-DD` format.",
4444
optional: true,
4545
},
4646
renewalDate: {
4747
type: "string",
4848
label: "Renewal Date",
49-
description: "The upcoming renewal date of the contract.",
49+
description: "The upcoming renewal date of the contract, in `YYYY-MM-DD` format.",
5050
optional: true,
5151
},
5252
stage: {

components/gainsight_nxt/gainsight_nxt.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default {
1010
description: "The name of the custom object.",
1111
async options() {
1212
const { data } = await this.listCustomObjects();
13-
return data/*?.filter?.((obj) => obj.objectType === "CUSTOM")*/.map(( {
13+
return data.map(( {
1414
label, objectName,
1515
}) => ({
1616
label,

0 commit comments

Comments
 (0)