Skip to content

Commit

Permalink
use tiny name chap in reader (#137)
Browse files Browse the repository at this point in the history
Fixes #136
  • Loading branch information
tachibana-shin authored Dec 15, 2023
1 parent 51116b0 commit dc17d52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/library/_components/DialogDLManga.vue
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
: epsSelected.add(data)
"
>
{{ parseFloat(data.name) }}
{{ parseFloat(data.name) || data.name }}
<i-iconoir-check
v-if="mapEp?.has(data.id)"
class="absolute top-1 left-1 size-1.2em text-green-400"
Expand Down
4 changes: 2 additions & 2 deletions src/components/truyen-tranh/ep/FloatingStatus.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
])
}}
</div>
<div>
{{ $t("ep-name", [metaEp ? metaEp?.name : "_"]) }}
<div class="truncate max-w-5em">
{{ $t("ep-name", [metaEp ? parseFloat(metaEp.name) || metaEp.name : "_"]) }}
</div>
</div>
</div>
Expand Down

0 comments on commit dc17d52

Please sign in to comment.