chore: bump version to 2.10.8 and adjust UI styling for scraping settings

This commit is contained in:
jxxghp
2026-04-29 17:10:36 +08:00
parent 24b763d808
commit fc9fe5e21e
3 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "moviepilot",
"version": "2.10.7",
"version": "2.10.8",
"private": true,
"type": "module",
"bin": "dist/service.js",

View File

@@ -161,7 +161,6 @@ html.v-overlay-scroll-blocked body {
display: flex;
align-items: flex-end;
justify-content: flex-end;
filter: brightness(1.35) saturate(1.05);
inset-block-end: 0.75rem;
inset-inline-end: 1rem;
pointer-events: none;

View File

@@ -1463,7 +1463,7 @@ watch(currentLlmSnapshotKey, (snapshotKey, previousSnapshotKey) => {
</VExpansionPanelTitle>
<VExpansionPanelText>
<VRow v-for="section in scrapingConfig" :key="section.section">
<VCol cols="12" class="pb-2">
<VCol cols="12">
<VListSubheader class="text-lg">
{{ t(`setting.system.${section.section}`) }}
</VListSubheader>
@@ -1475,15 +1475,16 @@ watch(currentLlmSnapshotKey, (snapshotKey, previousSnapshotKey) => {
@update:model-value="ScrapingPolicies[item.key] = $event"
color="primary"
variant="tonal"
size="small"
rounded="lg"
>
<VBtn value="skip" color="error">
<VBtn value="skip" color="error" size="small">
<VIcon icon="mdi-file-remove" />
</VBtn>
<VBtn value="missingOnly" color="success">
<VBtn value="missingOnly" color="success" size="small">
<VIcon icon="mdi-file-plus" />
</VBtn>
<VBtn value="overwrite" color="primary">
<VBtn value="overwrite" color="primary" size="small">
<VIcon icon="mdi-file-replace" />
</VBtn>
</VBtnToggle>