Skip to content

Commit 5537759

Browse files
committed
lint issue fixed
1 parent 653fda0 commit 5537759

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

components/workday/actions/delete-payroll-input/delete-payroll-input.mjs

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,19 @@ export default {
66
name: "Delete Payroll Input",
77
description: "Delete a payroll input by ID. [See the Documentation](https://community.workday.com/sites/default/files/file-hosting/restapi/#payroll/v2/delete-/payrollInputs/-ID-)",
88
version: "0.0.1",
9-
annotations: {
10-
destructiveHint: true,
11-
openWorldHint: true,
12-
readOnlyHint: false,
13-
},
9+
annotations: {
10+
destructiveHint: true,
11+
openWorldHint: true,
12+
readOnlyHint: false,
13+
},
1414
type: "action",
1515
props: {
1616
workday,
1717
payrollInputId: {
18-
propDefinition: [workday, "payrollInputId"],
18+
propDefinition: [
19+
workday,
20+
"payrollInputId",
21+
],
1922
},
2023
},
2124
async run({ $ }) {

components/workday/actions/update-mentorship/update-mentorship.mjs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ export default {
1616
props: {
1717
workday,
1818
mentorshipId: {
19-
propDefinition: [workday, "mentorshipId"],
19+
propDefinition: [
20+
workday,
21+
"mentorshipId",
22+
],
2023
},
2124
comment: {
2225
type: "string",
@@ -50,7 +53,7 @@ export default {
5053
},
5154
async run({ $ }) {
5255
const data = {
53-
startDate: this.startDate,
56+
startDate: this.startDate,
5457
};
5558
if (this.comment) data.comment = this.comment;
5659
if (this.purpose) data.purpose = this.purpose;

0 commit comments

Comments
 (0)