Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
aarkue committed May 12, 2024
1 parent 0fe697b commit 32db357
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,10 @@ export default function NewVariableChooser({
}
>
<ObVarName obVar={parseInt(obVar)} />:
<span className="ml-1 max-w-[13ch] shrink overflow-ellipsis overflow-hidden inline-block whitespace-pre text-left" title={obTypes.join(",\n")}>
<span
className="ml-1 max-w-[13ch] shrink overflow-ellipsis overflow-hidden inline-block whitespace-pre text-left"
title={obTypes.join(",\n")}
>
{obTypes.join(",\n")}
</span>
</button>
Expand Down Expand Up @@ -144,7 +147,10 @@ export default function NewVariableChooser({
}
>
<EvVarName eventVar={parseInt(evVar)} />:
<span className="ml-1 max-w-[15ch] shrink overflow-ellipsis overflow-hidden inline-block whitespace-pre text-left" title={evTypes.join(",\n")}>
<span
className="ml-1 max-w-[15ch] shrink overflow-ellipsis overflow-hidden inline-block whitespace-pre text-left"
title={evTypes.join(",\n")}
>
{evTypes.join(",\n")}
</span>
</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,7 @@ export default function ViolationIndicator({
>
{violationsPerNode.situationViolatedCount > 0 && (
<ExclamationTriangleIcon
className={clsx(
"h-4 mt-1",
getViolationTextColor(violationsPerNode),
)}
className={clsx("h-4 mt-1", getViolationTextColor(violationsPerNode))}
/>
)}
{violationsPerNode.situationViolatedCount === 0 && (
Expand Down

0 comments on commit 32db357

Please sign in to comment.