Fix warning

This commit is contained in:
Tobias Fella
2025-08-31 22:35:19 +02:00
parent 9412f7e189
commit c257ac504b

View File

@@ -130,6 +130,6 @@ FormCard.FormCardPage {
property OpenFileDialog openFileDialog: OpenFileDialog {
id: openFileDialog
onChosen: securityKeyField.text = Controller.loadFileContent(path)
onChosen: path => securityKeyField.text = Controller.loadFileContent(path)
}
}