mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-19 05:05:44 +08:00
Prefix version numbers with 'v' in system info
Updated the display of current and latest version numbers in the system info component to include a 'v' prefix for consistency and clarity.
This commit is contained in:
parent
f9c0b9d106
commit
7685cc3dfc
@ -218,12 +218,12 @@ const NewVersionTip = (props: NewVersionTipProps) => {
|
|||||||
<div className='text-sm space-x-2'>
|
<div className='text-sm space-x-2'>
|
||||||
<span>当前版本</span>
|
<span>当前版本</span>
|
||||||
<Chip color='primary' variant='flat'>
|
<Chip color='primary' variant='flat'>
|
||||||
{currentVersion}
|
v{currentVersion}
|
||||||
</Chip>
|
</Chip>
|
||||||
</div>
|
</div>
|
||||||
<div className='text-sm space-x-2'>
|
<div className='text-sm space-x-2'>
|
||||||
<span>最新版本</span>
|
<span>最新版本</span>
|
||||||
<Chip color='primary'>{latestVersion}</Chip>
|
<Chip color='primary'>v{latestVersion}</Chip>
|
||||||
</div>
|
</div>
|
||||||
{updating && (
|
{updating && (
|
||||||
<div className='flex justify-center'>
|
<div className='flex justify-center'>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user