chore: Fix p to span

This commit is contained in:
Anderson Oki 2024-04-30 16:28:05 +09:00
parent 078bab01ea
commit b43705057d
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ const StateIcon: FunctionComponent<StateIconProps> = ({
return <FontAwesomeIcon icon={faListCheck} />;
} else {
return (
<Text c={hasIssues ? "yellow" : "green"}>
<Text c={hasIssues ? "yellow" : "green"} span>
<FontAwesomeIcon
icon={hasIssues ? faExclamationCircle : faCheckCircle}
/>

View File

@ -116,7 +116,7 @@ function ManualSearchView<T extends SupportType>(props: Props<T>) {
return (
<Stack gap={0} onClick={() => setOpen((o) => !o)}>
<Text className="table-primary">
<Text className="table-primary" span>
{value[0]}
{value.length > 1 && (
<FontAwesomeIcon