Add some urlencoding of primary keys in query, view, and run process; updated qqq-frontend-core to also do more urlencoding

This commit is contained in:
2023-09-25 11:43:45 -05:00
parent 98cc2ceb00
commit 37a18bbe0d
5 changed files with 24 additions and 25 deletions

View File

@ -246,7 +246,7 @@ export default class DataGridUtils
if (key === tableMetaData.primaryKeyField && linkBase)
{
column.renderCell = (cellValues: any) => (
<Link to={`${linkBase}${cellValues.value}`} onClick={(e) => e.stopPropagation()}>{cellValues.value}</Link>
<Link to={`${linkBase}${encodeURIComponent(cellValues.value)}`} onClick={(e) => e.stopPropagation()}>{cellValues.value}</Link>
);
}
});