group by in datagrid

This commit is contained in:
Jan Prochazka
2021-03-06 13:02:01 +01:00
parent 7709e24ccd
commit fe5826bc8e
6 changed files with 182 additions and 19 deletions

View File

@@ -0,0 +1,4 @@
export default function fullDisplayName({ schemaName, pureName }) {
if (schemaName) return `${schemaName}.${pureName}`;
return pureName;
}