Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
GTFalcao committed Oct 29, 2024
1 parent 9b34452 commit c5a99d4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default {
},
arr: {
type: "string",
label: "Anual Recurring Revenue (ARR)",
label: "Annual Recurring Revenue (ARR)",
description: "The annual recurring revenue of the company, as a currency value.",
optional: true,
},
Expand All @@ -40,13 +40,13 @@ export default {
originalContractDate: {
type: "string",
label: "Original Contract Date",
description: "The date the engagement with the client started.",
description: "The date the engagement with the client started, in `YYYY-MM-DD` format.",
optional: true,
},
renewalDate: {
type: "string",
label: "Renewal Date",
description: "The upcoming renewal date of the contract.",
description: "The upcoming renewal date of the contract, in `YYYY-MM-DD` format.",
optional: true,
},
stage: {
Expand Down
2 changes: 1 addition & 1 deletion components/gainsight_nxt/gainsight_nxt.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default {
description: "The name of the custom object.",
async options() {
const { data } = await this.listCustomObjects();
return data/*?.filter?.((obj) => obj.objectType === "CUSTOM")*/.map(( {
return data.map(( {
label, objectName,
}) => ({
label,
Expand Down

0 comments on commit c5a99d4

Please sign in to comment.