mirror of
https://github.com/redstrate/Astra.git
synced 2025-05-11 20:47:45 +00:00
Fix some minor undefined references
This commit is contained in:
parent
80dc1bc0e9
commit
81d02c4a9e
2 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ Kirigami.ApplicationWindow {
|
|||
minimumWidth: 800
|
||||
minimumHeight: 500
|
||||
|
||||
title: pageStack.currentItem !== undefined ? pageStack.currentItem.title : ""
|
||||
title: pageStack.currentItem?.title ?? ""
|
||||
|
||||
property bool checkedAutoLogin: false
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ FormCard.FormCardPage {
|
|||
globalToolBarStyle: Kirigami.ApplicationHeaderStyle.None
|
||||
|
||||
header: Kirigami.Separator {
|
||||
width: root.width
|
||||
width: page.width
|
||||
}
|
||||
|
||||
data: FolderDialog {
|
||||
|
@ -142,7 +142,7 @@ FormCard.FormCardPage {
|
|||
}
|
||||
|
||||
FormCard.FormCard {
|
||||
visible: root.isInitialSetup
|
||||
visible: page.isInitialSetup
|
||||
|
||||
Layout.topMargin: Kirigami.Units.largeSpacing
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue