fix(dev): silence cppApp undefined warning
This commit is contained in:
parent
b4a1fb1a14
commit
e5322276ec
|
@ -246,5 +246,5 @@ QtObject {
|
|||
"connected-different-key": qsTrId("ens-username-connected-with-different-key"),
|
||||
}
|
||||
|
||||
readonly property bool isCppApp: cppApp ? cppApp : false
|
||||
readonly property bool isCppApp: typeof cppApp !== "undefined" ? cppApp : false
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue