feat(Data Table Node): Add limit to get and change copy (no-changelog) (#19190)

This commit is contained in:
Daria
2025-09-05 09:46:38 +03:00
committed by GitHub
parent ee91aa00f1
commit 48efb4c865
7 changed files with 72 additions and 38 deletions

View File

@@ -70,7 +70,7 @@ const errorMessage = computed<string>(() => {
});
}
// No data error message
if (props.fieldsToMap.length === 0) {
if (props.fieldsToMap.length === 0 && !props.typeOptions?.resourceMapper?.hideNoDataError) {
return (
// Use custom error message if defined
resourceMapperTypeOptions.value?.noFieldsError ||