fix: plugin auto update display issues (#28564)

This commit is contained in:
非法操作
2025-11-24 11:08:40 +08:00
committed by GitHub
parent 8a995d0c21
commit e1d11681c0
3 changed files with 12 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ const NoPluginSelected: FC<Props> = ({
const { t } = useTranslation()
const text = `${t(`plugin.autoUpdate.upgradeModePlaceholder.${updateMode === AUTO_UPDATE_MODE.partial ? 'partial' : 'exclude'}`)}`
return (
<div className='system-xs-regular rounded-[10px] border border-[divider-subtle] bg-background-section p-3 text-center text-text-tertiary'>
<div className='system-xs-regular rounded-[10px] border border-components-option-card-option-border bg-background-section p-3 text-center text-text-tertiary'>
{text}
</div>
)