mirror of
https://github.com/hicccc77/WeFlow.git
synced 2026-04-14 07:25:53 +00:00
修复了一处赋值错误
This commit is contained in:
@@ -164,7 +164,7 @@ function AccountManagementPage() {
|
||||
modifiedTime: Number(scanned.modifiedTime || 0),
|
||||
configUpdatedAt: Number(matchedConfig?.value?.updatedAt || 0),
|
||||
hasConfig: Boolean(matchedConfig),
|
||||
isCurrent: normalizedCurrent && normalized === normalizedCurrent,
|
||||
isCurrent: Boolean(normalizedCurrent) && normalized === normalizedCurrent,
|
||||
fromScan: true
|
||||
})
|
||||
}
|
||||
@@ -189,7 +189,7 @@ function AccountManagementPage() {
|
||||
modifiedTime: 0,
|
||||
configUpdatedAt: Number(matchedConfig.value?.updatedAt || 0),
|
||||
hasConfig: true,
|
||||
isCurrent: normalizedCurrent && normalized === normalizedCurrent,
|
||||
isCurrent: Boolean(normalizedCurrent) && normalized === normalizedCurrent,
|
||||
fromScan: false
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user