fix entity placeholder, pulse animate autodetected target, remove completed todo

This commit is contained in:
2024-05-11 05:27:21 -05:00
parent 88e822e286
commit c6a31f341c
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -193,7 +193,7 @@ const LookupInput: FunctionComponent<LookupInputProps> = ({
{selected == "auto" ? (
// If the detected type was provided, then notate which in parentheses. Compact object naming might be better in the future.
detectedType.isJust ? (
`Auto (${targetShortNames[detectedType.value]})`
<>Auto (<span className="animate-pulse">{targetShortNames[detectedType.value]}</span>)</>
) : (
objectNames["auto"]
)