@paris-ias/list 1.0.90 → 1.0.92

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.
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@paris-ias/list",
3
3
  "configKey": "list",
4
- "version": "1.0.90",
4
+ "version": "1.0.92",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.0",
7
7
  "unbuild": "3.5.0"
@@ -41,7 +41,9 @@
41
41
 
42
42
  <script setup>
43
43
  import { useDisplay } from "vuetify";
44
+ import { useLocalePath } from "#imports";
44
45
  const { name } = useDisplay();
46
+ const localePath = useLocalePath();
45
47
  const props = defineProps({
46
48
  item: { type: Object, required: true },
47
49
  loading: { type: Boolean, required: true, default: false }
@@ -53,11 +53,11 @@
53
53
  <MiscAtomsSocials v-if="item.socials" :socials="item.socials" />
54
54
  <PeopleGroupBadges :item="item" />
55
55
  <div
56
- v-if="item.summary && item.summary.length > 0"
56
+ v-if="item.biography && item.biography.length > 0"
57
57
  class="text-wrap clamped-text text-black"
58
58
  :style="'-webkit-line-clamp:' + lineClamp"
59
59
  >
60
- <MDC :value="item.summary" />
60
+ <MDC :value="item.biography" />
61
61
  </div>
62
62
 
63
63
  <div v-else class="text-body-2">
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "license": "AGPL-3.0-only",
3
3
  "main": "./dist/module.mjs",
4
- "version": "1.0.90",
4
+ "version": "1.0.92",
5
5
  "name": "@paris-ias/list",
6
6
  "repository": {
7
7
  "url": "git+https://github.com/IEA-Paris/list.git",