@arsedizioni/ars-utils 19.2.6 → 19.2.8

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.
@@ -2129,7 +2129,7 @@ class ClipperSearchResultManager extends ClipperDocumentManager {
2129
2129
  }
2130
2130
  }
2131
2131
  if (groupByYear) {
2132
- const d = params.sortMode === ClipperSort.SourceDateAsc
2132
+ const d = this.filterParams.models?.length > 1
2133
2133
  ? n.publishingDate
2134
2134
  : n.date;
2135
2135
  const year = SystemUtils.formatDate(d, DateFormat.LongMonthAndYear).toLowerCase();
@@ -2998,6 +2998,7 @@ class ClipperBrowserComponent extends ClipperSearchResultManager {
2998
2998
  modules.push({ name: "Normativa vigente", shortName: "Normativa vigente", value: ClipperModule.NormativaVigente });
2999
2999
  modules.push({ name: "Articoli", shortName: "Articoli", value: ClipperModule.Approfondimenti });
3000
3000
  modules.push({ name: "Note a sentenza", shortName: "Note a sentenza", value: ClipperModule.Giurisprudenza });
3001
+ modules.push({ name: "Giurisprudenza", shortName: "Giurisprudenza", value: ClipperModule.GiurisprudenzaRecente });
3001
3002
  modules.push({ name: "Quesiti", shortName: "Quesiti", value: ClipperModule.QuesitiECasiRisolti });
3002
3003
  modules.push({ name: "Scadenze e segnalazioni", shortName: "Scadenze e segnalazioni", value: ClipperModule.ScadenzeESegnalazioni });
3003
3004
  return modules;