🖼 Some UI fixes

This commit is contained in:
2022-04-06 00:10:36 -07:00
parent 0d0fd948b5
commit 0cd142153c
8 changed files with 198 additions and 140 deletions

View File

@@ -102,7 +102,7 @@ export const Library = (data: IComicBookLibraryProps): ReactElement => {
},
},
{
Header: "Import Status",
Header: "ComicInfo.xml",
accessor: "_source.sourcedMetadata.comicInfo",
minWidth: 300,
align: "right",
@@ -124,7 +124,11 @@ export const Library = (data: IComicBookLibraryProps): ReactElement => {
"_source.sourcedMetadata.comicvine.volumeInformation.publisher",
Cell(props) {
return (
!isNil(props.cell.value) && <h6>{props.cell.value.name}</h6>
!isNil(props.cell.value) && (
<h6 className="is-size-7 has-text-weight-bold">
{props.cell.value.name}
</h6>
)
);
},
},