Skip to content

Commit

Permalink
fix(toast): find alternative icons in google font icons
Browse files Browse the repository at this point in the history
  • Loading branch information
pelord committed May 28, 2024
1 parent 9c66af3 commit 679ae90
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app/pages/portal/toast-panel/toast-panel.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ export class ToastPanelComponent implements OnInit, OnDestroy {
{
id: 'list',
title: this.languageService.translate.instant('toastPanel.backToList'),
icon: 'format-list-bulleted-square',
icon: 'list',
tooltip: this.languageService.translate.instant(
'toastPanel.listButton'
),
Expand All @@ -426,7 +426,7 @@ export class ToastPanelComponent implements OnInit, OnDestroy {
title: this.languageService.translate.instant(
'toastPanel.zoomOnFeature'
),
icon: 'magnify-plus-outline',
icon: 'zoom_in',
tooltip: this.languageService.translate.instant(
'toastPanel.zoomOnFeatureTooltip'
),
Expand Down Expand Up @@ -456,7 +456,7 @@ export class ToastPanelComponent implements OnInit, OnDestroy {
tooltip: this.languageService.translate.instant(
'toastPanel.zoomOnFeaturesTooltip'
),
icon: 'magnify-scan',
icon: 'frame_inspect',
availability: () => {
return this.multiple;
},
Expand Down Expand Up @@ -497,7 +497,7 @@ export class ToastPanelComponent implements OnInit, OnDestroy {
tooltip: this.languageService.translate.instant(
'toastPanel.fullExtentTooltip'
),
icon: 'arrow-expand',
icon: 'open_in_full',
display: () => {
return this.fullExtent$.pipe(map((v) => !v && !this.isDesktop()));
},
Expand All @@ -513,7 +513,7 @@ export class ToastPanelComponent implements OnInit, OnDestroy {
tooltip: this.languageService.translate.instant(
'toastPanel.standardExtentTooltip'
),
icon: 'arrow-collapse',
icon: 'close_fullscreen',
display: () => {
return this.fullExtent$.pipe(map((v) => v && !this.isDesktop()));
},
Expand Down

0 comments on commit 679ae90

Please sign in to comment.