refactor: add space between Component and class
This commit is contained in:
parent
a1c6e2fa35
commit
2642a00565
@ -9,9 +9,9 @@ import {NgStyle} from "@angular/common";
|
||||
MatProgressSpinner,
|
||||
NgStyle
|
||||
],
|
||||
templateUrl: './data-spinner.component.html',
|
||||
styleUrl: './data-spinner.component.css'
|
||||
templateUrl: './data-spinner.component.html'
|
||||
})
|
||||
|
||||
export class DataSpinnerComponent {
|
||||
@Input() color: string = "accent";
|
||||
@Input() scale: number = 50;
|
||||
|
@ -12,6 +12,7 @@ import {version} from "@/../package.json";
|
||||
templateUrl: './footer.component.html',
|
||||
styleUrl: './footer.component.css'
|
||||
})
|
||||
|
||||
export class FooterComponent {
|
||||
currentYear: number;
|
||||
version: string;
|
||||
|
@ -14,6 +14,7 @@ import {MatButton, MatFabButton} from "@angular/material/button";
|
||||
],
|
||||
templateUrl: './loading-indicator.component.html'
|
||||
})
|
||||
|
||||
export class LoadingIndicatorComponent {
|
||||
@Input() loading: boolean = true;
|
||||
@Output() retryFunction: EventEmitter<void> = new EventEmitter<void>();
|
||||
|
@ -22,6 +22,7 @@ import {LoadingIndicatorComponent} from "@component/common/loading-indicator/loa
|
||||
templateUrl: './lecture-hall.component.html',
|
||||
styleUrl: './lecture-hall.component.css'
|
||||
})
|
||||
|
||||
export class LectureHallComponent {
|
||||
protected campusId: number | null = null;
|
||||
protected chipLecture: FormControl = new FormControl();
|
||||
|
Loading…
Reference in New Issue
Block a user