This commit is contained in:
Joshua Sangmeister 2019-08-06 11:57:23 +02:00
parent ce50ce2eb9
commit ad432dddc0
4 changed files with 0 additions and 10 deletions

View File

@ -16,9 +16,6 @@
<mat-accordion class="os-card">
<mat-expansion-panel
*ngFor="let section of this.commentSections"
(opened)="openId = section.id"
(closed)="openId = null"
[expanded]="openId === section.id"
multiple="false"
>
<mat-expansion-panel-header>

View File

@ -40,8 +40,6 @@ export class MotionCommentSectionListComponent extends BaseViewComponent impleme
*/
public commentFieldForm: FormGroup;
public openId: number | null;
public groups: BehaviorSubject<ViewGroup[]>;
/**

View File

@ -16,9 +16,6 @@
<mat-accordion class="os-card">
<mat-expansion-panel
*cdkVirtualFor="let statuteParagraph of statuteParagraphs"
(opened)="openId = statuteParagraph.id"
(closed)="openId = null"
[expanded]="openId === statuteParagraph.id"
multiple="false"
>
<mat-expansion-panel-header>

View File

@ -38,8 +38,6 @@ export class StatuteParagraphListComponent extends BaseViewComponent implements
*/
public statuteParagraphForm: FormGroup;
public openId: Number | null;
/**
* The usual component constructor. Initializes the forms
*