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 a60bb38..7ee7669 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) { + @for (itemLayer of itemLayers; track itemLayer.code) {
{{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 614dec9..009c3a4 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) { + @for (layerValue of layers; track layerValue.layerName) {
  • {{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 73ae8d5..1ebd8b9 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) { + @for (feature of features; track feature.id_) {
    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 c6dab18..fddfb33 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) { + @for (feature of features; track feature.id_) {
    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 73ae8d5..1ebd8b9 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) { + @for (feature of features; track feature.id_) {
    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 3d0ceb4..324c915 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) { + @for (feature of features; track feature.id_) {
    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 775b188..2885497 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) { + @for (item of items; track item.code) {
    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 8ead138..523264f 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) { + @for (widget of widgets; track widget.item.code) {
    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 d8ebcae..f109c77 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) { + @for (item of gradientItems; track item.code) {
    • {{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 57485d9..16ad995 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) { + @for (file of uploadService.files; track file.identifier) {
      • @if (file.success == false) {
        {{file.fileName}}