From 22a5c4a12d285c76e4c48a655185f9d6a1ca5865 Mon Sep 17 00:00:00 2001 From: Patrick Fic <> Date: Tue, 7 Dec 2021 15:15:40 -0800 Subject: [PATCH] Add production repolling once an hr. --- .../production-board-kanban.component.jsx | 7 ++++++- .../production-board-kanban.container.jsx | 5 ++++- .../production-list-table.component.jsx | 8 +++++++- .../production-list-table.container.jsx | 12 ++++++++++-- 4 files changed, 27 insertions(+), 5 deletions(-) diff --git a/client/src/components/production-board-kanban/production-board-kanban.component.jsx b/client/src/components/production-board-kanban/production-board-kanban.component.jsx index a90e7b29e..10ed5d440 100644 --- a/client/src/components/production-board-kanban/production-board-kanban.component.jsx +++ b/client/src/components/production-board-kanban/production-board-kanban.component.jsx @@ -2,7 +2,8 @@ import { useApolloClient } from "@apollo/client"; import Board, { moveCard } from "@asseinfo/react-kanban"; //import "@asseinfo/react-kanban/dist/styles.css"; import "./production-board-kanban.styles.scss"; -import { Grid, notification, PageHeader, Space, Statistic } from "antd"; +import { SyncOutlined } from '@ant-design/icons' +import { Grid, notification, Button, PageHeader, Space, Statistic } from "antd"; import React, { useEffect, useState } from "react"; import { useTranslation } from "react-i18next"; import { connect } from "react-redux"; @@ -33,6 +34,7 @@ const mapDispatchToProps = (dispatch) => ({ export function ProductionBoardKanbanComponent({ data, bodyshop, + refetch, technician, insertAuditTrail, associationSettings, @@ -192,6 +194,9 @@ export function ProductionBoardKanbanComponent({ } extra={ + + ; + return ( + + ); }