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