Skip to content

Commit

Permalink
Merge pull request #86 from Kyutech-C3/develop
Browse files Browse the repository at this point in the history
v0.2.6
  • Loading branch information
Simo-C3 authored Apr 24, 2023
2 parents f7b789d + 3bd039f commit 911a77c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 19 deletions.
20 changes: 1 addition & 19 deletions components/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/>
<nuxt-link to="/" class="hover:opacity-50 h-full">
<img
src="@/assets/images/ToyBoxlogo.png"
src="@/assets/images/ToyBoxLogo.png"
class="h-full"
alt="ToyBox logo"
/>
Expand Down Expand Up @@ -89,19 +89,6 @@
class="hover:opacity-60 transition"
@click="activeNav = true"
>
<!-- <img
:src="getIcon"
class="
rounded-full
w-12
h-12
cursor-pointer
pointer-events-none
shadow-md
bg-white
"
alt="user icon"
/> -->
<user-rounded-icon :image-src="getIcon" size="large" />
</button>
</div>
Expand All @@ -124,11 +111,6 @@
"
>
<!-- icon -->
<!-- <img
:src="getIcon"
class="rounded-full w-16 h-16 mx-auto my-1 pointer-events-none"
alt="user icon"
/> -->
<user-rounded-icon
:image-src="getIcon"
size="xx-large"
Expand Down
3 changes: 3 additions & 0 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,8 @@ export default class Index extends Vue {
}
if (this.resWorks.works.length < this.limit) {
this.isWorksEmpty = true
} else {
this.isWorksEmpty = false
}
this.resWorks = res.data
this.processing = false
Expand All @@ -204,6 +206,7 @@ export default class Index extends Vue {
tagSelectorStore.initSelectedTags()
await this.searchWorks()
workFilterStore.setSearched(true)
this.isWorksEmpty = false
}
}
</script>

0 comments on commit 911a77c

Please sign in to comment.