Fixing app templating after refactor

This commit is contained in:
ItsLemmy
2025-11-08 20:50:21 -05:00
parent 355271768c
commit 168bf54f41
28 changed files with 113 additions and 101 deletions
+4 -2
View File
@@ -15,8 +15,10 @@ Variants {
required property ShellScreen modelData
property bool shouldBeActive: {
if (!modelData || !modelData.name)
Logger.d("Shell", "MainScreen activated for", modelData?.name)
if (!modelData || !modelData.name) {
return false
}
Logger.d("Shell", "MainScreen activated for", modelData?.name)
return true
}