RED-3796: Dashboard logo tooltip & breadcrumb item
This commit is contained in:
parent
3f49953759
commit
66273315b0
@ -7,7 +7,7 @@
|
||||
<redaction-breadcrumbs></redaction-breadcrumbs>
|
||||
</div>
|
||||
|
||||
<a [routerLink]="['/']" class="logo">
|
||||
<a [matTooltip]="'top-bar.navigation-items.back-to-dashboard' | translate" [routerLink]="['/']" class="logo">
|
||||
<iqser-hidden-action (action)="userPreferenceService.toggleDevFeatures()">
|
||||
<iqser-logo icon="red:logo"></iqser-logo>
|
||||
</iqser-hidden-action>
|
||||
|
||||
@ -114,9 +114,11 @@ export class BreadcrumbsService {
|
||||
}
|
||||
|
||||
private _addDossierTemplateDropdown(params: Record<string, string>): void {
|
||||
const breadcrumbs = this._dashboardStatsService.all
|
||||
.filter(dt => !dt.isEmpty)
|
||||
.map(dt => this._dossierTemplateBreadcrumb({ dossierTemplateId: dt.id }));
|
||||
const breadcrumbs = [this._dashboardBreadcrumb].concat(
|
||||
this._dashboardStatsService.all
|
||||
.filter(dt => !dt.isEmpty)
|
||||
.map(dt => this._dossierTemplateBreadcrumb({ dossierTemplateId: dt.id })),
|
||||
);
|
||||
|
||||
const activeOption = breadcrumbs.find(b => b.options.routerLink[1] === params[DOSSIER_TEMPLATE_ID]);
|
||||
|
||||
|
||||
@ -1904,6 +1904,7 @@
|
||||
"top-bar": {
|
||||
"navigation-items": {
|
||||
"back": "Zurück",
|
||||
"back-to-dashboard": "",
|
||||
"dashboard": "",
|
||||
"my-account": {
|
||||
"children": {
|
||||
|
||||
@ -1904,6 +1904,7 @@
|
||||
"top-bar": {
|
||||
"navigation-items": {
|
||||
"back": "Back",
|
||||
"back-to-dashboard": "Back to Dashboard",
|
||||
"dashboard": "Dashboard",
|
||||
"my-account": {
|
||||
"children": {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user