From c8de489eade0b577d6ee4d8f89a77da06d9ad32e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nicol=C3=B2=20P?=
- Luogo e anno rinvenimento: ${this._data.place}. ${this._data.year} + Luogo e anno rinvenimento: ${Utils.parseMarkers(this._data.place)}. ${this._data.year}
Datazione: ${this._data.dating} @@ -36,7 +36,7 @@ export class Finding {
Descrizione - ${this._data.description} + ${Utils.parseMarkers(this._data.description)}
diff --git a/webgis/js/components/NotConserved.js b/webgis/js/components/NotConserved.js index 2cac875..c105d5f 100644 --- a/webgis/js/components/NotConserved.js +++ b/webgis/js/components/NotConserved.js @@ -32,11 +32,11 @@ export class NotConserved { - Località generica: ${this._data.genericLocation} + Località generica: ${Utils.parseMarkers(this._data.genericLocation)}
Descrizione - ${this._data.shortDescription} + ${Utils.parseMarkers(this._data.shortDescription)}
diff --git a/webgis/js/components/Prehistoric.js b/webgis/js/components/Prehistoric.js index 45bbf37..0941e69 100644 --- a/webgis/js/components/Prehistoric.js +++ b/webgis/js/components/Prehistoric.js @@ -32,11 +32,11 @@ export class Prehistoric { - Località generica: ${this._data.genericPlace} + Località generica: ${Utils.parseMarkers(this._data.genericPlace)}
Descrizione breve - ${this._data.description} + ${Utils.parseMarkers(this._data.description)}
Conservazione: ${this._data.conservation} diff --git a/webgis/js/components/Reuse.js b/webgis/js/components/Reuse.js index 4bf12bf..a827337 100644 --- a/webgis/js/components/Reuse.js +++ b/webgis/js/components/Reuse.js @@ -29,14 +29,14 @@ export class Reuse { Stato di conservazione: ${this._data.conservationState}
- Luogo e anno rinvenimento: ${this._data.finding} + Luogo e anno rinvenimento: ${Utils.parseMarkers(this._data.finding)}
Datazione: ${this._data.dating}
Descrizione - ${this._data.description} + ${Utils.parseMarkers(this._data.description)}
diff --git a/webgis/js/components/SiteSheet.js b/webgis/js/components/SiteSheet.js
index 5b7bb66..903ab42 100644
--- a/webgis/js/components/SiteSheet.js
+++ b/webgis/js/components/SiteSheet.js
@@ -20,6 +20,7 @@ export class SiteSheet {
* @returns {string} HTML
*/
render() {
+ const desc = Utils.parseMarkers(this._siteData.description);
return `
Descrizione breve
- ${this._data.shortDescription}
+ ${Utils.parseMarkers(this._data.shortDescription)}
Autore scheda: ${this._data.author}
@@ -45,7 +46,7 @@ export class SiteSheet {
Identificazione Rilievi ${this._siteData.surveys ?? 'Nessun rilievo'}
- Descrizione
+ ${this._siteData.description} ${desc} Bibliografia
@@ -61,7 +62,6 @@ export class SiteSheet {
}
renderShort() {
- // TEST
const shortDesc = Utils.parseMarkers(this._siteData.shortDescription);
return `
diff --git a/webgis/js/components/Underwater.js b/webgis/js/components/Underwater.js
index 70983dd..ebca5a9 100644
--- a/webgis/js/components/Underwater.js
+++ b/webgis/js/components/Underwater.js
@@ -28,7 +28,7 @@ export class Underwater {