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