handle json (#21915)

This commit is contained in:
Alan Ren
2023-02-10 19:05:32 -08:00
committed by GitHub
parent 1d96476a81
commit 12a3bf6b3b
6 changed files with 67 additions and 49 deletions

View File

@@ -70,7 +70,6 @@ export function hyperLinkFormatter(row: number | undefined, cell: any | undefine
if (DBCellValue.isDBCellValue(value)) {
valueToDisplay = 'NULL';
if (!value.isNull) {
cellClasses += ' xmlLink';
valueToDisplay = getCellDisplayValue(value.displayValue);
return `<a class="${cellClasses}">${valueToDisplay}</a>`;
} else {

View File

@@ -17,18 +17,24 @@
}
.slick-cell a,
.slick-cell a:link,
.resultsMessageValue a,
.resultsMessageValue a:link {
.resultsMessageValue a {
color: var(--color-grid-link);
text-decoration: underline;
cursor: pointer;
white-space: inherit;
}
.resultsMessageValue a {
text-decoration: underline;
}
.slick-cell a {
text-decoration: none;
}
.slick-cell a:hover,
.resultsMessageValue a:hover {
color: var(--color-grid-link-hover);
text-decoration: underline;
}
/*