mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 19:11:13 +00:00
refactor(editor): RunDataTable render null values more distinct (no-changelog) (#18500)
Co-authored-by: Elias Meire <elias@meire.dev>
This commit is contained in:
@@ -269,7 +269,7 @@ function getValueToRender(value: unknown): string {
|
||||
return i18n.baseText('runData.emptyObject');
|
||||
}
|
||||
if (value === null || value === undefined) {
|
||||
return `[${value}]`;
|
||||
return `${value}`;
|
||||
}
|
||||
if (value === true || value === false || typeof value === 'number') {
|
||||
return value.toString();
|
||||
@@ -957,6 +957,7 @@ th.isCollapsingColumn + th {
|
||||
|
||||
.empty {
|
||||
color: var(--color-danger);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.limitColWidth {
|
||||
|
||||
Reference in New Issue
Block a user