1
Fork 0
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:
Joshua Goins 2025-05-05 16:24:40 -04:00
parent 80dc1bc0e9
commit 81d02c4a9e
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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