From 3e6a4c0044ae106483ee21b7bb3632123369154d Mon Sep 17 00:00:00 2001 From: Joris Goosen Date: Wed, 9 Oct 2024 17:28:03 +0200 Subject: [PATCH] use checking if column exists field --- inst/qml/common/evaluation/AddVariables.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/inst/qml/common/evaluation/AddVariables.qml b/inst/qml/common/evaluation/AddVariables.qml index 4fe15ea4..bc8b20c6 100644 --- a/inst/qml/common/evaluation/AddVariables.qml +++ b/inst/qml/common/evaluation/AddVariables.qml @@ -39,12 +39,13 @@ Group value: qsTr("selected") } - TextField + CheckColumnIsFreeOrMineField { id: variable_col name: "variable_col" text: qsTr("Column name audit result") fieldWidth: 120 * preferencesModel.uiScale value: qsTr("auditResult") + } }