CEC-4178 Handle car update send event (#323)
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
const Statuses = {
|
const Statuses = {
|
||||||
Pending: "pending",
|
Pending: "pending",
|
||||||
|
Sent: "sent",
|
||||||
ManifestReceived: "manifest_received",
|
ManifestReceived: "manifest_received",
|
||||||
ManifestAccepted: "manifest_accepted",
|
ManifestAccepted: "manifest_accepted",
|
||||||
ManifestRejected: "manifest_rejected",
|
ManifestRejected: "manifest_rejected",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import React, { useState, useEffect } from "react";
|
|
||||||
import { CheckCircle, RadioButtonUnchecked, Error } from "@material-ui/icons";
|
|
||||||
import Typography from "@material-ui/core/Typography";
|
import Typography from "@material-ui/core/Typography";
|
||||||
|
import { CheckCircle, Error, RadioButtonUnchecked } from "@material-ui/icons";
|
||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
|
import React, { useEffect, useState } from "react";
|
||||||
|
|
||||||
import CircularProgress from "../CircularProgress";
|
import CircularProgress from "../CircularProgress";
|
||||||
import s from "./Statuses";
|
import s from "./Statuses";
|
||||||
@@ -13,7 +13,7 @@ const CompleteStatus = 100;
|
|||||||
const PHASES = [
|
const PHASES = [
|
||||||
{
|
{
|
||||||
label: "Pending",
|
label: "Pending",
|
||||||
events: [s.Pending],
|
events: [s.Pending, s.Sent],
|
||||||
progress: () => CompleteStatus,
|
progress: () => CompleteStatus,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user