Minor fixes throughout the system.

This commit is contained in:
Patrick Fic
2020-08-17 13:47:10 -07:00
parent 5efb21ada7
commit 9b9feffdfa
20 changed files with 2292 additions and 141 deletions

View File

@@ -17,7 +17,7 @@ export default function JobDetailCardsNotesComponent({ loading, data }) {
<CardTemplate
loading={loading}
title={t("jobs.labels.cards.notes")}
extraLink={`/manage/jobs/${data.id}?notes`}
extraLink={`/manage/jobs/${data.id}?tab=notes`}
>
{data ? (
<Container>
@@ -25,7 +25,7 @@ export default function JobDetailCardsNotesComponent({ loading, data }) {
size="small"
bordered
dataSource={data.notes}
renderItem={item => (
renderItem={(item) => (
<List.Item>
{item.critical ? (
<EyeInvisibleFilled style={{ margin: 4, color: "red" }} />