@arsedizioni/ars-utils 21.2.255 → 21.2.257

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -648,6 +648,9 @@ class ClipperDocumentManager {
648
648
  const topics = item.topics
649
649
  ? 'Argomenti: ' + item.topics.replaceAll('o', '.') + '<br>'
650
650
  : '';
651
+ const taxonomy = item.taxonomyPath
652
+ ? 'Tassonomia:<br>&nbsp;- ' + item.taxonomyPath.replaceAll('\r\n', '<br>&nbsp;- ') + '<br>'
653
+ : '';
651
654
  const message = "<p >Il link che trovi qui sotto è un riferimento diretto al documento selezionato.</p>" +
652
655
  "<p >Lo puoi utilizzare nella tua documentazione o inviarlo per email ad un tuo collega. La persona che desidererà visualizzare il documento dovrà necessariamente essere un utente abbonato.</p>" +
653
656
  "<p >Seleziona e copia (fai CTRL+C) il link qui sotto.</p>" +
@@ -661,6 +664,7 @@ class ClipperDocumentManager {
661
664
  channels +
662
665
  origin +
663
666
  topics +
667
+ taxonomy +
664
668
  '</p>';
665
669
  this.dialogService.info(message, 'Copia link', 'Chiudi');
666
670
  }