Refactor jobs detail page to use container. Refresh detail cards on note add.

This commit is contained in:
Patrick Fic
2020-01-21 10:52:40 -08:00
parent 19c9d05dae
commit 26745f2e62
16 changed files with 220 additions and 65 deletions

View File

@@ -4,7 +4,6 @@ import { useTranslation } from "react-i18next";
import { Link } from "react-router-dom";
import PhoneFormatter from "../../utils/PhoneFormatter";
import { alphaSort } from "../../utils/sorters";
import "./jobs-list.styles.scss";
export default function JobsList({
loading,
@@ -190,7 +189,7 @@ export default function JobsList({
};
return (
<div className='jobs-list'>
<div>
<Table
loading={loading}
title={() => {

View File

@@ -1,4 +0,0 @@
.jobs-list{
text-align: center;
height: 40vh;
}