Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
francescolf committed Oct 28, 2023
1 parent 840e2c3 commit 12dd2e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 4173",
"preview": "vite preview",
"format": "npx prettier --write ."
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions src/components/ArticlesSearchForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ defineProps({
</div>
<div class="mb-2">
<ArticleListItem
v-for="item in this.articles"
v-for="item in articles"
:key="item.id"
v-bind:content="item.content"
v-bind:targettime="item.target_time"
Expand All @@ -50,7 +50,7 @@ defineProps({
:buttons="buttons"
:formoccurrence="occurrence"
></ArticleListItem>
<div v-if="this.articles.length != 0 && canLoadMore" class="mt-4 row">
<div v-if="articles.length != 0 && canLoadMore" class="mt-4 row">
<div class="text-primary mx-auto col-auto" role="status">
<a
id="loadMore"
Expand Down

0 comments on commit 12dd2e7

Please sign in to comment.