diff --git a/projects/common-map/src/fm-map/components/aol/layer-list/layer-list.component.html b/projects/common-map/src/fm-map/components/aol/layer-list/layer-list.component.html index 7ee7669..a60bb38 100644 --- a/projects/common-map/src/fm-map/components/aol/layer-list/layer-list.component.html +++ b/projects/common-map/src/fm-map/components/aol/layer-list/layer-list.component.html @@ -2,7 +2,7 @@ @if (itemLayers.length > 0) {
- @for (itemLayer of itemLayers; track itemLayer.code) { + @for (itemLayer of itemLayers; track itemLayer) {
{{itemLayer.item.name}}
@if (selectedLayer==itemLayer && !baseLayers) { diff --git a/projects/common-map/src/fm-map/components/aol/layer-values/layer-values.component.html b/projects/common-map/src/fm-map/components/aol/layer-values/layer-values.component.html index 009c3a4..614dec9 100644 --- a/projects/common-map/src/fm-map/components/aol/layer-values/layer-values.component.html +++ b/projects/common-map/src/fm-map/components/aol/layer-values/layer-values.component.html @@ -7,7 +7,7 @@
{{lonlat$}}
@if (layers.length>0 ) {
    - @for (layerValue of layers; track layerValue.layerName) { + @for (layerValue of layers; track layerValue) {
  • {{layerValue.layerName}}
    {{layerValue.date|date}}
    diff --git a/projects/common-map/src/fm-map/components/feature-list-cropfield/feature-list-cropfield.component.html b/projects/common-map/src/fm-map/components/feature-list-cropfield/feature-list-cropfield.component.html index 1ebd8b9..73ae8d5 100644 --- a/projects/common-map/src/fm-map/components/feature-list-cropfield/feature-list-cropfield.component.html +++ b/projects/common-map/src/fm-map/components/feature-list-cropfield/feature-list-cropfield.component.html @@ -7,7 +7,7 @@ @if (features; as features) {
    - @for (feature of features; track feature.id_) { + @for (feature of features; track feature) {
    diff --git a/projects/common-map/src/fm-map/components/feature-list-croppingscheme/feature-list-croppingscheme.component.html b/projects/common-map/src/fm-map/components/feature-list-croppingscheme/feature-list-croppingscheme.component.html index fddfb33..c6dab18 100644 --- a/projects/common-map/src/fm-map/components/feature-list-croppingscheme/feature-list-croppingscheme.component.html +++ b/projects/common-map/src/fm-map/components/feature-list-croppingscheme/feature-list-croppingscheme.component.html @@ -5,7 +5,7 @@ @if (features; as features) {
    - @for (feature of features; track feature.id_) { + @for (feature of features; track feature) {
    diff --git a/projects/common-map/src/fm-map/components/feature-list-observation/feature-list-observation.component.html b/projects/common-map/src/fm-map/components/feature-list-observation/feature-list-observation.component.html index 1ebd8b9..73ae8d5 100644 --- a/projects/common-map/src/fm-map/components/feature-list-observation/feature-list-observation.component.html +++ b/projects/common-map/src/fm-map/components/feature-list-observation/feature-list-observation.component.html @@ -7,7 +7,7 @@ @if (features; as features) {
    - @for (feature of features; track feature.id_) { + @for (feature of features; track feature) {
    diff --git a/projects/common-map/src/fm-map/components/feature-list/feature-list.component.html b/projects/common-map/src/fm-map/components/feature-list/feature-list.component.html index 324c915..3d0ceb4 100644 --- a/projects/common-map/src/fm-map/components/feature-list/feature-list.component.html +++ b/projects/common-map/src/fm-map/components/feature-list/feature-list.component.html @@ -1,7 +1,7 @@ @if (features; as features) {
    - @for (feature of features; track feature.id_) { + @for (feature of features; track feature) {
    diff --git a/projects/common-map/src/fm-map/components/item-list/item-list.component.html b/projects/common-map/src/fm-map/components/item-list/item-list.component.html index 2885497..775b188 100644 --- a/projects/common-map/src/fm-map/components/item-list/item-list.component.html +++ b/projects/common-map/src/fm-map/components/item-list/item-list.component.html @@ -1,6 +1,6 @@ @if (items; as items) {
    - @for (item of items; track item.code) { + @for (item of items; track item) {
    diff --git a/projects/common-map/src/fm-map/components/item-widget-list/item-widget-list.component.html b/projects/common-map/src/fm-map/components/item-widget-list/item-widget-list.component.html index 523264f..8ead138 100644 --- a/projects/common-map/src/fm-map/components/item-widget-list/item-widget-list.component.html +++ b/projects/common-map/src/fm-map/components/item-widget-list/item-widget-list.component.html @@ -1,6 +1,6 @@ @if (widgets; as widgets) {
    - @for (widget of widgets; track widget.item.code) { + @for (widget of widgets; track widget) {
    diff --git a/projects/common/src/fm/components/gradient-select/gradient-select.component.html b/projects/common/src/fm/components/gradient-select/gradient-select.component.html index f109c77..d8ebcae 100644 --- a/projects/common/src/fm/components/gradient-select/gradient-select.component.html +++ b/projects/common/src/fm/components/gradient-select/gradient-select.component.html @@ -11,7 +11,7 @@
    @if (gradientItems) {
      - @for (item of gradientItems; track item.code) { + @for (item of gradientItems; track item) {
    • {{item?.name}}
      diff --git a/projects/common/src/fm/components/resumable-file-upload/resumable-file-upload.component.html b/projects/common/src/fm/components/resumable-file-upload/resumable-file-upload.component.html index 16ad995..57485d9 100644 --- a/projects/common/src/fm/components/resumable-file-upload/resumable-file-upload.component.html +++ b/projects/common/src/fm/components/resumable-file-upload/resumable-file-upload.component.html @@ -13,7 +13,7 @@
        - @for (file of uploadService.files; track file.identifier) { + @for (file of uploadService.files; track file) {
      • @if (file.success == false) {
        {{file.fileName}}