[Solved] In react-admin, how can I prefix a UrlField href?

Based on @françois-zaninotto ‘s answer, I fixed a syntax error fixed some of the missing useRecordContext() param that made it work: // ############################################### // FbUrlField.js import * as React from ‘react’; import { Link } from ‘@material-ui/core’; import { useRecordContext } from ‘react-admin’; const FbUrlField = ( props ) => { const { source, target, … Read more