Skip to content

Commit

Permalink
addressed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
eljefe223 committed May 28, 2020
1 parent e9f1b9b commit f179071
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export class AccordionItem extends FASTElement {
@attr
public id: string;

@observable
public expandbutton: HTMLElement;

/* eslint-disable-next-line @typescript-eslint/no-unused-vars */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ export class Accordion extends FASTElement {
});
};

private resetItems = (): void => {
private resetItems(): void {
this.accordionItems.forEach((item: AccordionItem, index: number) => {
item.expanded = false;
});
};
}

private removeItemListeners = (oldValue: any): void => {
oldValue.forEach((item: HTMLElement, index: number) => {
Expand Down

0 comments on commit f179071

Please sign in to comment.