Skip to content

Commit 6c61aa8

Browse files
authored
chore: lint fix (#3047)
Signed-off-by: Akshat Patel <[email protected]>
1 parent 635b512 commit 6c61aa8

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

src/structured-list/list-row.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export class ListRow implements AfterContentInit {
102102
this.input.nativeElement.click();
103103
}
104104
}
105-
105+
106106
onChange(event) {
107107
this.change.emit(event);
108108
}

src/structured-list/structured-list.stories.ts

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default {
3131
const Template = (args) => ({
3232
props: args,
3333
template: `
34-
<cds-structured-list [border]="border" [condensed]="condensed" [nowrap]="nowrap">
34+
<cds-structured-list [condensed]="condensed">
3535
<cds-list-header>
3636
<cds-list-column nowrap="true">Column 1</cds-list-column>
3737
<cds-list-column nowrap="true">Column 2</cds-list-column>
@@ -64,19 +64,15 @@ const Template = (args) => ({
6464
});
6565
export const Basic = Template.bind({});
6666
Basic.args = {
67-
border: false,
68-
condensed: false,
69-
nowrap: false
67+
condensed: false
7068
};
7169

7270
const SelectionTemplate = (args) => ({
7371
props: args,
7472
template: `
7573
<cds-structured-list
76-
[border]="border"
7774
[condensed]="condensed"
78-
[nowrap]="nowrap"
79-
selection="true"
75+
[selection]="true"
8076
[(ngModel)]="valueSelected">
8177
<cds-list-header>
8278
<cds-list-column nowrap="true">Column 1</cds-list-column>

0 commit comments

Comments
 (0)