Add missing core kinds

Signed-off-by: Tim Hansen <timbonicus@gmail.com>
This commit is contained in:
Tim Hansen
2021-03-19 15:37:32 -06:00
parent d1168562f3
commit 8817a87cdd
2 changed files with 6 additions and 0 deletions
@@ -513,6 +513,9 @@ export const EntityPage = () => {
return <SystemEntityPage entity={entity} />;
case 'domain':
return <DomainEntityPage entity={entity} />;
case 'location':
case 'resource':
case 'template':
default:
return <DefaultEntityPage entity={entity} />;
}
@@ -313,6 +313,9 @@ export const EntityPage = () => {
return <SystemEntityPage entity={entity} />;
case 'domain':
return <DomainEntityPage entity={entity} />;
case 'location':
case 'resource':
case 'template':
default:
return <DefaultEntityPage entity={entity} />;
}