FluNavigationView: Fix the bug caused by wrong type.

FluPage should be FluPageType.
This commit is contained in:
Mentalflow 2023-07-27 18:43:11 +08:00
parent b25f962ec2
commit 26b47cfbaf
Signed by untrusted user: Mentalflow
GPG Key ID: 5AE68D4401A2EE71
1 changed files with 1 additions and 1 deletions

View File

@ -637,7 +637,7 @@ Item {
clip: true
visible: {
if( nav_stack.currentItem){
return nav_stack.currentItem.launchMode === FluPage.SingleInstance
return nav_stack.currentItem.launchMode === FluPageType.SingleInstance
}
return false
}