Skip to content

Commit

Permalink
fix dam author filter
Browse files Browse the repository at this point in the history
  • Loading branch information
volar committed Dec 4, 2024
1 parent 7886907 commit 93c3c88
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ const { t } = useI18n()
filter-by-field="text"
:filter-sort-by="null"
>
<template #item="{ props: itemProps, item }">
<template #item="{ props: itemProps, item: itemItem }">
<VListItem
v-bind="itemProps"
title=""
>
<VListItemTitle>
{{ item.title }}
{{ itemItem.title }}
<VIcon
v-if="item.raw.raw.reviewed"
v-if="itemItem.raw?.raw?.reviewed || itemItem.raw?.reviewed"
icon="mdi-shield-check"
class="text-success ml-1"
size="small"
Expand All @@ -53,7 +53,7 @@ const { t } = useI18n()
<VChip v-bind="chipProps">
{{ chipItem.title }}
<VIcon
v-if="chipItem.raw.raw.reviewed"
v-if="chipItem.raw?.raw?.reviewed || chipItem.raw?.reviewed"
icon="mdi-shield-check"
class="text-success ml-1"
size="small"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,16 +239,16 @@ watchDebounced(
@click:clear="onClickClear"
>
<!-- @vue-skip -->
<template #item="{ props: itemProps, item }">
<template #item="{ props: itemProps, item: itemItem }">
<slot
name="item"
:item="item"
:item="itemItem"
:props="itemProps"
>
<VListItem
v-bind="itemProps"
:title="item.raw.title"
:subtitle="item.raw.subtitle"
:title="itemItem.raw.title"
:subtitle="itemItem.raw.subtitle"
/>
</slot>
</template>
Expand Down

0 comments on commit 93c3c88

Please sign in to comment.