Files
twenty/front/src/modules/ui/editable-fields/components/FieldDisplayURL.tsx
T
Lucas BordeauandGitHub be21392737 Feat/company card fields (#686)
* wip

* Ok

* asd

* Fixed cancel submit

* Renamed

* Fixed
2023-07-15 19:17:31 -07:00

6 lines
202 B
TypeScript

import { RawLink } from '@/ui/components/links/RawLink';
export function FieldDisplayURL({ URL }: { URL: string | undefined }) {
return <RawLink href={URL ? 'https://' + URL : ''}>{URL}</RawLink>;
}