From edc98647507f820a7307880a2c9d6c965c660ec9 Mon Sep 17 00:00:00 2001 From: Serhii Filonenko Date: Fri, 22 Aug 2025 11:36:25 +0300 Subject: [PATCH] HCK-12443: fix default value for external table property --- properties_pane/entity_level/entityLevelConfig.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/properties_pane/entity_level/entityLevelConfig.json b/properties_pane/entity_level/entityLevelConfig.json index 08014b5..690ac8b 100644 --- a/properties_pane/entity_level/entityLevelConfig.json +++ b/properties_pane/entity_level/entityLevelConfig.json @@ -149,20 +149,21 @@ making sure that you maintain a proper JSON format. "propertyName": "External", "propertyKeyword": "externalTable", "propertyType": "checkbox", + "defaultValue": true, + "disabled": true, "dependency": { "key": "tableFormat", - "value": "Standard" + "value": "Iceberg" } }, { "propertyName": "External", "propertyKeyword": "externalTable", "propertyType": "checkbox", - "defaultValue": true, - "disabled": true, + "defaultValue": false, "dependency": { "key": "tableFormat", - "value": "Iceberg" + "value": "Standard" } }, {