refactor(editor): RunDataTable render null values more distinct (no-changelog) (#18500)

Co-authored-by: Elias Meire <elias@meire.dev>
This commit is contained in:
Ria Scholz
2025-08-28 15:05:58 +02:00
committed by GitHub
parent 1b743ae251
commit 26395d4756
3 changed files with 47 additions and 4 deletions

View File

@@ -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 {