From 6422aa2db2c01e2057e8cd523d155d2432c7e494 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Wed, 30 Aug 2023 17:14:50 +0100 Subject: [PATCH] Remove implicit QString -> QStringList conversion --- source/app/ui/qml/Loading/ImportAttributesDialog.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/app/ui/qml/Loading/ImportAttributesDialog.qml b/source/app/ui/qml/Loading/ImportAttributesDialog.qml index 5caf008eb..ef94bd775 100644 --- a/source/app/ui/qml/Loading/ImportAttributesDialog.qml +++ b/source/app/ui/qml/Loading/ImportAttributesDialog.qml @@ -429,7 +429,7 @@ Window function updateModel() { let headers = tabularDataParser.rowHeaders(ValueType.All, - keyHeaderComboBox.currentText); + [keyHeaderComboBox.currentText]); model = headers; selectAll(); }