mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-19 16:13:06 +00:00
ci: increase npm package install speed
This commit is contained in:
@@ -15,8 +15,7 @@
|
||||
*ngIf="characteristic.image"
|
||||
[src]="characteristic.image"
|
||||
alt=""
|
||||
/><span> {{ characteristic.name }}</span
|
||||
>
|
||||
/><span> {{ characteristic.name }}</span>
|
||||
</p>
|
||||
</ion-card-content>
|
||||
</ion-card>
|
||||
|
||||
@@ -13,27 +13,36 @@
|
||||
<ion-note
|
||||
*ngIf="item.categories && item.type !== 'building'; else onlyType"
|
||||
>
|
||||
{{ 'categories' | thingTranslate: item | join: ', ' | titlecase }}
|
||||
<ul>
|
||||
<li>
|
||||
{{
|
||||
'categories' | thingTranslate: item | join: ', ' | titlecase
|
||||
}}
|
||||
</li>
|
||||
<li *ngIf="distance">
|
||||
<ion-icon name="walk"></ion-icon
|
||||
>{{ distance | numberLocalized: 'style:unit,unit:meter,notation:compact' }}
|
||||
</li>
|
||||
</ul>
|
||||
</ion-note>
|
||||
</p>
|
||||
<ng-template #onlyType>
|
||||
<ion-note>
|
||||
{{ 'type' | thingTranslate: item }}
|
||||
<ul>
|
||||
<li>
|
||||
{{ 'type' | thingTranslate: item }}
|
||||
</li>
|
||||
<li *ngIf="distance">
|
||||
<ion-icon name="walk"></ion-icon
|
||||
>{{ distance | numberLocalized: '1.0-0' }} m
|
||||
</li>
|
||||
</ul>
|
||||
</ion-note>
|
||||
</ng-template>
|
||||
</ng-container>
|
||||
<p *ngIf="item.description">
|
||||
{{ 'description' | thingTranslate: item }}
|
||||
</p>
|
||||
<ion-note>
|
||||
<ul>
|
||||
<li>{{ 'type' | thingTranslate: item }}</li>
|
||||
<li *ngIf="distance">
|
||||
<ion-icon name="walk"></ion-icon
|
||||
>{{ distance | numberLocalized: '1.0-0' }} m
|
||||
</li>
|
||||
</ul>
|
||||
</ion-note>
|
||||
</div>
|
||||
</ion-col>
|
||||
<div *ngIf="item.type !== 'building'">
|
||||
|
||||
Reference in New Issue
Block a user