Skip to content

Commit

Permalink
fix(icons): fix a few missing icons (post font upgrade)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbourget committed Jun 7, 2019
1 parent 55ca99f commit 308bac4
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
mat-icon-button
[matMenuTriggerFor]="actionbarMenu"
[disabled]="store.view.empty">
<mat-icon svgIcon="more-horiz"></mat-icon>
<mat-icon svgIcon="dots-horizontal"></mat-icon>
</button>

<mat-menu
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class ActionbarComponent implements OnDestroy, OnChanges {
*/
toggleCollapseAction = {
id: 'actionbar_toggle',
icon: 'more-vert',
icon: 'dots-vertical',
handler: () => {
this.collapsed = !this.collapsed;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ <h4 matLine>{{context.title}}</h4>
[target]="actions"
[collapsed]=collapsed
(click)="collapsed = !collapsed">
<mat-icon svgIcon="more-horiz"></mat-icon>
<mat-icon svgIcon="dots-horizontal"></mat-icon>
</button>

</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
[matTooltip]="'igo.geo.measure.actionbar.calculate.tooltip' | translate"
[disabled]="(selectedFeatures$ | async).length === 0"
(click)="onCalculateClick()">
<mat-icon svgIcon="playlist-plus"></mat-icon>
<mat-icon svgIcon="calculator"></mat-icon>
</button>

<button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
[color]="color"
(click)="onClearButtonClick()"
*ngIf="!empty">
<mat-icon svgIcon="clear"></mat-icon>
<mat-icon svgIcon="close"></mat-icon>
</button>
</div>

Expand Down
2 changes: 1 addition & 1 deletion packages/geo/src/lib/search/shared/search.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function featureToSearchResult(
dataType: FEATURE,
id: feature.meta.id as string,
title: feature.meta.title,
icon: 'place'
icon: 'map-marker'
}
};
}
2 changes: 1 addition & 1 deletion packages/geo/src/lib/search/shared/sources/coordinates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class CoordinatesReverseSearchSource extends SearchSource
dataType: FEATURE,
id: '1',
title: String(data[0]) + ', ' + String(data[1]),
icon: 'place'
icon: 'map-marker'
}
};
}
Expand Down
4 changes: 2 additions & 2 deletions packages/geo/src/lib/search/shared/sources/icherche.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export class IChercheSearchSource extends SearchSource implements TextSearch {
id,
title: data.properties.recherche,
titleHtml: data.highlight,
icon: 'place'
icon: 'map-marker'
}
};
}
Expand Down Expand Up @@ -237,7 +237,7 @@ export class IChercheReverseSearchSource extends SearchSource
dataType: FEATURE,
id,
title: data.properties.nom,
icon: 'place'
icon: 'map-marker'
}
};
}
Expand Down
2 changes: 1 addition & 1 deletion packages/geo/src/lib/search/shared/sources/nominatim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class NominatimSearchSource extends SearchSource implements TextSearch {
dataType: FEATURE,
id,
title: data.display_name,
icon: 'place'
icon: 'map-marker'
},
data: {
type: FEATURE,
Expand Down
4 changes: 2 additions & 2 deletions packages/geo/src/lib/search/shared/sources/storedqueries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export class StoredQueriesSearchSource extends SearchSource implements TextSearc
id,
title: data.properties.title,
titleHtml: data.properties[title],
icon: 'place'
icon: 'map-marker'
}
};
}
Expand Down Expand Up @@ -409,7 +409,7 @@ export class StoredQueriesReverseSearchSource extends SearchSource
dataType: FEATURE,
id,
title: data.properties[title],
icon: 'place'
icon: 'map-marker'
}
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { MapState } from '../../map/map.state';
@ToolComponent({
name: 'importExport',
title: 'igo.integration.tools.importExport',
icon: 'import-export'
icon: 'file-move'
})
@Component({
selector: 'igo-import-export-tool',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { MeasureState } from '../measure.state';
@ToolComponent({
name: 'measurer',
title: 'igo.integration.tools.measurer',
icon: 'straighten'
icon: 'ruler'
})
@Component({
selector: 'igo-measurer-tool',
Expand Down

0 comments on commit 308bac4

Please sign in to comment.