Set labels control escaping

This commit is contained in:
Jackson Harper
2023-06-21 21:50:33 +08:00
parent ab5ddc80f3
commit aed6f75f63

View File

@ -238,14 +238,14 @@ function Footer(props: FooterProps): JSX.Element {
{textMatch === 'available' && (
<>
<Check size={18} color={theme.colors.grayText.toString()} />
Use Enter to add label "{props.filterText}"
Use Enter to add label &quot;{props.filterText}&quot;
</>
)}
{textMatch === 'none' && (
<>
<Plus size={18} color={theme.colors.grayText.toString()} />
Use Enter to create new label "{props.filterText}"
Use Enter to create new label &quot;{props.filterText}&quot;
</>
)}
</HStack>