mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-07 16:56:40 +08:00
Merge pull request #74 from honue/main
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
<script lang="ts" setup>
|
<script lang='ts' setup>
|
||||||
import { useToast } from 'vue-toast-notification'
|
import { useToast } from 'vue-toast-notification'
|
||||||
import api from '@/api'
|
import api from '@/api'
|
||||||
import FilterRuleCard from '@/components/cards/FilterRuleCard.vue'
|
import FilterRuleCard from '@/components/cards/FilterRuleCard.vue'
|
||||||
@@ -94,7 +94,7 @@ async function saveSelectedRssSites() {
|
|||||||
|
|
||||||
const result2: { [key: string]: any } = await api.post(
|
const result2: { [key: string]: any } = await api.post(
|
||||||
'system/setting/SUBSCRIBE_SEARCH',
|
'system/setting/SUBSCRIBE_SEARCH',
|
||||||
enableIntervalSearch.value,
|
enableIntervalSearch.value ? 'True' : 'False',
|
||||||
)
|
)
|
||||||
|
|
||||||
const result3: { [key: string]: any } = await api.post(
|
const result3: { [key: string]: any } = await api.post(
|
||||||
@@ -638,7 +638,7 @@ onMounted(() => {
|
|||||||
</VDialog>
|
</VDialog>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang='scss'>
|
||||||
.grid-filterrule-card {
|
.grid-filterrule-card {
|
||||||
grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
|
||||||
padding-block-end: 1rem;
|
padding-block-end: 1rem;
|
||||||
|
|||||||
Reference in New Issue
Block a user