diff --git a/nuxt/stores/pojmi.js b/nuxt/stores/pojmi.js index 65d4118..74c7719 100644 --- a/nuxt/stores/pojmi.js +++ b/nuxt/stores/pojmi.js @@ -6,11 +6,11 @@ export const usePojmiStore = defineStore('pojmi', { async naloziPojme() { const { jsonApiUrl, headers, deserialize } = useApi() - const data = await $fetch(`${jsonApiUrl}/node/concept`, { headers }) + const data = await $fetch(`${jsonApiUrl}/node/concept?sort=created`, { headers }) this.pojmi = await deserialize(data, s => ({ id: s.id, naslov: s.title, - tekst: s.body.processed, + tekst: s.body ? s.body.processed : '', media: s.field_media }), 'naslov') },