Skip to content

Commit

Permalink
fix: 1.inbox
Browse files Browse the repository at this point in the history
  • Loading branch information
JuckZ committed Mar 10, 2023
1 parent 8a7397e commit d740743
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/ui/PomodoroListView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@
<span
v-show="planButNotStart.length !== 0"
style="position: absolute; transform: translateY(-100%); right: 0"
>{{ '📥' + activeTime.date }}</span
>{{ '📥' }}</span
>
<n-list
<NList
:class="{
pomodoroList: true,
active: activeTime.date === time.date,
notActive: activeTime.date !== time.date,
}"
:show-divider="false"
>
<n-list-item v-for="pomodoro in pomodoroList" :key="pomodoro.timestamp" :style="getRandomStyle()" bordered>
<n-ellipsis v-show="activeTime.date !== time.date">
<NListItem v-for="pomodoro in pomodoroList" :key="pomodoro.timestamp" :style="getRandomStyle()" bordered>
<NEllipsis v-show="activeTime.date !== time.date">
{{ pomodoro.task }}
</n-ellipsis>
</n-list-item>
</n-list>
</NEllipsis>
</NListItem>
</NList>
</div>
</template>

Expand Down

0 comments on commit d740743

Please sign in to comment.