Skip to content

Commit 9dd5141

Browse files
authored
Merge pull request #2784 from Akshat55/issue.lint-fix
chore: lint fix
2 parents ba22be2 + 09949a2 commit 9dd5141

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/contained-list/contained-list.stories.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -198,25 +198,25 @@ export const withActionsAndContextData = (args) => {
198198
items: [
199199
{
200200
id: 1,
201-
label: 'List Item'
201+
label: "List Item"
202202
},
203203
{
204204
id: 2,
205-
label: 'List Item'
205+
label: "List Item"
206206
},
207207
{
208208
id: 3,
209-
label: 'List Item'
209+
label: "List Item"
210210
},
211211
{
212212
id: 4,
213-
label: 'List Item'
214-
},
213+
label: "List Item"
214+
}
215215
],
216-
onActionClick: (item: any) => { alert(`${item.label} ${item.id} action click triggered`) }
217-
}
218-
219-
return {
216+
onActionClick: (item: any) => { alert(`${item.label} ${item.id} action click triggered`); }
217+
};
218+
219+
return {
220220
props: args,
221221
template: `
222222
<ng-template #actionWithClick let-actionData>
@@ -238,7 +238,7 @@ export const withActionsAndContextData = (args) => {
238238
</cds-contained-list-item>
239239
</cds-contained-list>
240240
`
241-
}
241+
};
242242
};
243243

244244
const withIconsTemplate = () => ({

0 commit comments

Comments
 (0)