Dont allow clicking the wildcard resource link

This commit is contained in:
Owen
2026-04-28 11:21:32 -07:00
parent 592ca64253
commit 8783c47a3c

View File

@@ -40,10 +40,14 @@ export default function ResourceInfoBox({}: ResourceInfoBoxType) {
<InfoSection> <InfoSection>
<InfoSectionTitle>URL</InfoSectionTitle> <InfoSectionTitle>URL</InfoSectionTitle>
<InfoSectionContent> <InfoSectionContent>
<CopyToClipboard {resource.wildcard ? (
text={fullUrl} <span>{fullUrl}</span>
isLink={true} ) : (
/> <CopyToClipboard
text={fullUrl}
isLink={true}
/>
)}
</InfoSectionContent> </InfoSectionContent>
</InfoSection> </InfoSection>
<InfoSection> <InfoSection>