mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-21 00:01:26 +08:00
Merge pull request #202 from InfinityPacer/dev
This commit is contained in:
@@ -94,6 +94,7 @@ onMounted(() => {
|
||||
chips
|
||||
label=""
|
||||
multiple
|
||||
clearable
|
||||
@update:modelValue="filtersChanged"
|
||||
/>
|
||||
</VCol>
|
||||
|
||||
@@ -330,6 +330,7 @@ onMounted(() => {
|
||||
:items="librariesOptions"
|
||||
chips
|
||||
multiple
|
||||
clearable
|
||||
hint="只有选中的媒体库才会被同步"
|
||||
persistent-hint
|
||||
active
|
||||
|
||||
@@ -79,7 +79,7 @@ function saveNotificationInfo() {
|
||||
return
|
||||
}
|
||||
// 重名判断
|
||||
if (props.notifications.some(item => item.name === notificationName.value && item!== props.notification)) {
|
||||
if (props.notifications.some(item => item.name === notificationName.value && item !== props.notification)) {
|
||||
$toast.error(`【${notificationName.value}】已存在,请替换为其他名称`)
|
||||
return
|
||||
}
|
||||
@@ -129,7 +129,7 @@ function onClose() {
|
||||
<VImg :src="getIcon" cover class="mt-5 me-7" max-width="3rem" />
|
||||
</VCardText>
|
||||
</VCard>
|
||||
<VDialog v-model="notificationInfoDialog" scrollable max-width="40rem" persistent >
|
||||
<VDialog v-model="notificationInfoDialog" scrollable max-width="40rem" persistent>
|
||||
<VCard :title="`${props.notification.name} - 配置`" class="rounded-t">
|
||||
<DialogCloseBtn v-model="notificationInfoDialog" />
|
||||
<VDivider />
|
||||
@@ -146,6 +146,7 @@ function onClose() {
|
||||
label="消息类型"
|
||||
hint="开启通知的消息类型"
|
||||
multiple
|
||||
clearable
|
||||
chips
|
||||
persistent-hint
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user