100479: Removed the default input values to make it possible to override them in themes

This commit is contained in:
Alexandre Vryghem
2023-03-24 16:47:42 +01:00
parent 38df774c9c
commit 80b90524b6
5 changed files with 50 additions and 73 deletions

View File

@@ -14,8 +14,8 @@ import { ThemeService } from '../theme-support/theme.service';
export class ThemedLoadingComponent extends ThemedComponent<LoadingComponent> {
@Input() message: string;
@Input() showMessage = true;
@Input() spinner = false;
@Input() showMessage: boolean;
@Input() spinner: boolean;
protected inAndOutputNames: (keyof LoadingComponent & keyof this)[] = ['message', 'showMessage', 'spinner'];