|
{x}
+ selectAllCheckBoxes(index)}
+ className=" text-xs flex items-center justify-center cursor-pointer underline text-green-500"
+ >
+ {getSelectAllButtonText(index)}
+
|
))}
diff --git a/dqops/src/main/frontend/src/components/DataQualityChecks/CheckDetails/CheckResultsTab.tsx b/dqops/src/main/frontend/src/components/DataQualityChecks/CheckDetails/CheckResultsTab.tsx
index de5de550e2..4bab535fa9 100644
--- a/dqops/src/main/frontend/src/components/DataQualityChecks/CheckDetails/CheckResultsTab.tsx
+++ b/dqops/src/main/frontend/src/components/DataQualityChecks/CheckDetails/CheckResultsTab.tsx
@@ -92,6 +92,7 @@ const CheckResultsTab = ({
{
label: 'Actual value',
value: 'actualValue',
+ alwaysVisible: true,
className:
'text-sm px-4 !py-2 whitespace-nowrap text-gray-700 text-right',
render: (value: number | string) => (
@@ -101,6 +102,7 @@ const CheckResultsTab = ({
{
label: 'Expected value',
value: 'expectedValue',
+ alwaysVisible: true,
className:
'text-sm px-4 !py-2 whitespace-nowrap text-gray-700 text-right',
render: (value: number | string) => (
diff --git a/dqops/src/main/frontend/src/components/DataQualityChecks/CheckDetails/ErrorSamplesTab.tsx b/dqops/src/main/frontend/src/components/DataQualityChecks/CheckDetails/ErrorSamplesTab.tsx
index 57d0bb075a..041c6781c8 100644
--- a/dqops/src/main/frontend/src/components/DataQualityChecks/CheckDetails/ErrorSamplesTab.tsx
+++ b/dqops/src/main/frontend/src/components/DataQualityChecks/CheckDetails/ErrorSamplesTab.tsx
@@ -70,6 +70,7 @@ const ErrorSamplesTab = ({
{
label: 'Result',
value: 'result',
+ alwaysVisible: true,
className: 'text-sm !py-2 whitespace-nowrap text-gray-700 w-50 text-right'
},
...getRowIds(),
diff --git a/dqops/src/main/frontend/src/components/DataQualityChecks/CheckDetails/SensorReadoutsTab.tsx b/dqops/src/main/frontend/src/components/DataQualityChecks/CheckDetails/SensorReadoutsTab.tsx
index c1da26a41a..96f53caf44 100644
--- a/dqops/src/main/frontend/src/components/DataQualityChecks/CheckDetails/SensorReadoutsTab.tsx
+++ b/dqops/src/main/frontend/src/components/DataQualityChecks/CheckDetails/SensorReadoutsTab.tsx
@@ -58,6 +58,7 @@ const SensorReadoutsTab = ({
{
label: 'Actual value',
value: 'actualValue',
+ alwaysVisible: true,
className: 'text-sm !py-2 whitespace-nowrap text-gray-700 text-right',
render: (value: number | string) => (
|---|