mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 14:03:06 +00:00

- Correct the path in commented-out code in the custom theme's components - Clarify that the workflow-item-sen-back.component.scss file is a stub - It has no corresponding SCSS file in the base theme
16 lines
688 B
TypeScript
16 lines
688 B
TypeScript
import { Component } from '@angular/core';
|
|
import { HeaderNavbarWrapperComponent as BaseComponent } from '../../../../app/header-nav-wrapper/header-navbar-wrapper.component';
|
|
|
|
/**
|
|
* This component represents a wrapper for the horizontal navbar and the header
|
|
*/
|
|
@Component({
|
|
selector: 'ds-header-navbar-wrapper',
|
|
// styleUrls: ['./header-navbar-wrapper.component.scss'],
|
|
styleUrls: ['../../../../app/header-nav-wrapper/header-navbar-wrapper.component.scss'],
|
|
// templateUrl: './header-navbar-wrapper.component.html',
|
|
templateUrl: '../../../../app/header-nav-wrapper/header-navbar-wrapper.component.html',
|
|
})
|
|
export class HeaderNavbarWrapperComponent extends BaseComponent {
|
|
}
|