File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,4 +21,8 @@ if (import.meta.env.VITE_ENV == 'production') {
2121} else {
2222 console .log ("Tracking scripts disabled .")
2323}
24- < / script>
24+ < / script>
25+
26+ < template>
27+ < div>< / div>
28+ < / template>
Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ export const HomepageLinks = [
1818 blank : ''
1919 } ,
2020 {
21- label : 'Curriculum ' ,
21+ label : 'Currículo ' ,
2222 icon : 'hugeicons:briefcase-01' ,
23- target : 'https://andrepg.github.io/curriculum ' ,
23+ target : 'https://andrepg.github.io/curriculo ' ,
2424 blank : ''
2525 }
2626] ;
Original file line number Diff line number Diff line change @@ -5,13 +5,16 @@ import { useRoute } from 'vue-router'
55import PostTimelineFeature from ' @/components/Blog/PostTimelineFeature.vue'
66
77import { SitemapBridge } from ' @/router/sitemap'
8+ import { Post } from ' @/data/Posts'
89
910const route = useRoute ()
1011const isLoading = ref (true )
11- const posts = ref ([])
12+
13+ const posts = ref <Post []>([])
14+
1215const sitemapBridge = SitemapBridge .getInstance ()
1316
14- const seriesFilter = computed <string >(() => route .params .series .toString ())
17+ const seriesFilter = computed <string >(() => route .params .series ? .toString () ?? ' ' );
1518
1619const pageTitle = computed (() => {
1720 if (seriesFilter .value ) {
You can’t perform that action at this time.
0 commit comments