Skip to content

Commit

Permalink
* Fixing covers not showing up on manga pages
Browse files Browse the repository at this point in the history
* Fixing bad icons on volumes
* Standardizing (un)favourite icons
  • Loading branch information
holycardboard committed Apr 15, 2024
1 parent 9d5f64c commit a5fea76
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/Cover.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
:link="actualLink"
:class="{ 'porn': isPorn, 'rounded': true }"
:style="styles"
:size="{ width: width, height: height }"
/>
</template>

Expand Down
2 changes: 1 addition & 1 deletion src/components/MangaProgress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<IconBtn
v-if="currentUser"
:loading="loading"
icon="star"
:icon="isFavourite ? 'heart_minus' : 'favorite'"
:fill="isFavourite"
:text="isFavourite ? 'Unfavourite' : 'Favourite'"
color="shade"
Expand Down
4 changes: 4 additions & 0 deletions src/components/volume-card/VolumeCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@ const toggleRead = async () => {
&.btns {
justify-content: flex-end;
.btn:last-child {
margin-right: var(--margin);
}
}
}
Expand Down
3 changes: 3 additions & 0 deletions src/components/volume-card/VolumeList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,20 @@
v-for="s in sorts"
:link="url(s.key)"
:other-classes="s.key === actSort ? 'active' : ''"
no-boarder
/>
</div>
<IconBtn
icon="sort"
:rotate="actAsc ? 0 : 180"
:flip="!actAsc"
:link="url(undefined, !actAsc)"
no-boarder
/>
<IconBtn
@click="collapseToggle"
:icon="allCollapsed ? 'remove' : 'add'"
no-boarder
/>
</header>
<Loading v-if="volumes.length === 0" />
Expand Down

0 comments on commit a5fea76

Please sign in to comment.