We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bedbd1 commit 9467511Copy full SHA for 9467511
web/src/components/datasets/DatasetInfo.tsx
@@ -140,11 +140,11 @@ const DatasetInfo: FunctionComponent<DatasetInfoProps> = (props) => {
140
disabled={!hasColumnLineage}
141
size={'small'}
142
component={Link}
143
- to={`/datasets/column-level/${dataset.namespace}/${
144
- dataset.name
+ to={`/datasets/column-level/${encodeURIComponent(dataset.namespace)}/${
+ encodeURIComponent(dataset.name)
145
}?column=${encodeURIComponent(
146
encodeQueryString(dataset.namespace, dataset.name, field.name)
147
- )}&columnName=${field.name}`}
+ )}&columnName=${encodeURIComponent(field.name)}`}
148
>
149
<SplitscreenIcon />
150
</IconButton>
0 commit comments