We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b60232f commit 3156663Copy full SHA for 3156663
projects/coreui-angular/src/lib/header/header/header.component.ts
@@ -12,7 +12,6 @@ type Container = boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'fluid';
12
imports: [NgClass]
13
})
14
export class HeaderComponent {
15
-
16
/**
17
* Defines optional container wrapping children elements.
18
*/
@@ -24,10 +23,11 @@ export class HeaderComponent {
24
23
25
* Default role for header. [docs]
26
* @type string
27
- * @default 'header'
+ * @default 'banner'
28
29
@HostBinding('attr.role')
30
- @Input() role = 'header';
+ @Input()
+ role = 'banner';
31
32
@HostBinding('class')
33
get getClasses(): any {
0 commit comments