Removed productionview view from Hasura and replaced with standard GQL queries. BOD-243

This commit is contained in:
Patrick Fic
2020-08-03 13:43:39 -07:00
parent 3a8b4ddf5a
commit 75b1ed44e8
8 changed files with 68 additions and 135 deletions

View File

@@ -20,7 +20,7 @@ export function ProductionBoardKanbanContainer({ bodyshop }) {
return (
<ProductionBoardKanbanComponent
loading={loading}
data={data ? data.productionview : []}
data={data ? data.jobs : []}
/>
);
}