Reformat all project files to use the prettier config file.

This commit is contained in:
Patrick Fic
2024-03-27 15:35:07 -07:00
parent b161530381
commit e1df64d592
873 changed files with 111387 additions and 125473 deletions

View File

@@ -1,7 +1,7 @@
import {List} from "antd";
import {AuditOutlined, EyeInvisibleFilled, WarningFilled,} from "@ant-design/icons";
import { List } from "antd";
import { AuditOutlined, EyeInvisibleFilled, WarningFilled } from "@ant-design/icons";
import React from "react";
import {useTranslation} from "react-i18next";
import { useTranslation } from "react-i18next";
import CardTemplate from "./job-detail-cards.template.component";
import styled from "styled-components";
@@ -10,33 +10,31 @@ const Container = styled.div`
overflow-y: auto;
`;
export default function JobDetailCardsNotesComponent({loading, data}) {
const {t} = useTranslation();
export default function JobDetailCardsNotesComponent({ loading, data }) {
const { t } = useTranslation();
return (
<CardTemplate
loading={loading}
title={t("jobs.labels.cards.notes")}
extraLink={`/manage/jobs/${data.id}?tab=notes`}
>
{data ? (
<Container>
<List
bordered
dataSource={data.notes}
renderItem={(item) => (
<List.Item style={{whiteSpace: "pre-line"}}>
{item.critical ? (
<EyeInvisibleFilled style={{margin: 4, color: "red"}}/>
) : null}
{item.private ? <WarningFilled style={{margin: 4}}/> : null}
{item.audit ? <AuditOutlined style={{margin: 4}}/> : null}
{item.text}
</List.Item>
)}
/>
</Container>
) : null}
</CardTemplate>
);
return (
<CardTemplate
loading={loading}
title={t("jobs.labels.cards.notes")}
extraLink={`/manage/jobs/${data.id}?tab=notes`}
>
{data ? (
<Container>
<List
bordered
dataSource={data.notes}
renderItem={(item) => (
<List.Item style={{ whiteSpace: "pre-line" }}>
{item.critical ? <EyeInvisibleFilled style={{ margin: 4, color: "red" }} /> : null}
{item.private ? <WarningFilled style={{ margin: 4 }} /> : null}
{item.audit ? <AuditOutlined style={{ margin: 4 }} /> : null}
{item.text}
</List.Item>
)}
/>
</Container>
) : null}
</CardTemplate>
);
}