Skip to content

Commit

Permalink
fix(schedule): show - if name is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftin committed Jun 30, 2024
1 parent ac1aa6b commit 59ef3f8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion web/src/views/project/Schedule.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,17 @@
:items-per-page="Number.MAX_VALUE"
>
<template v-slot:item.active="{ item }">

<v-switch
v-model="item.active"
inset
@change="setActive(item.id, item.active)"
></v-switch>
</template>

<template v-slot:item.name="{ item }">
<div>{{ item.name || '&mdash;' }}</div>
</template>

<template v-slot:item.tpl_name="{ item }">
<div class="d-flex">
<router-link :to="
Expand Down

0 comments on commit 59ef3f8

Please sign in to comment.