Skip to content

Commit

Permalink
fix: 尝试修复订阅丢失
Browse files Browse the repository at this point in the history
  • Loading branch information
xream committed Mar 24, 2024
1 parent 162113d commit ce75718
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sub-store-front-end",
"version": "2.14.211",
"version": "2.14.212",
"private": true,
"scripts": {
"dev": "vite --host",
Expand Down
6 changes: 3 additions & 3 deletions src/components/SubListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
{{ flow }}
</span>
</template>
<template v-else>
<template v-else-if="typeof flow === 'object'">
<span>
{{ flow.firstLine }}
</span>
Expand All @@ -117,8 +117,8 @@
{{ flow }}
</span>
</template>
<template v-else>
<span v-if="flow && flow.secondLine" style="font-weight: normal">
<template v-else-if="typeof flow === 'object'">
<span v-if="flow.secondLine" style="font-weight: normal">
{{ flow.firstLine + ' | ' + flow.secondLine }}
</span>
<span v-else style="font-weight: normal">
Expand Down

0 comments on commit ce75718

Please sign in to comment.