The problem: We can't hardcode the href here because we want to allow the user of the component to set the url. ``` // ResourcesWidget.tsx <EuiLink href={"#"} onClick={(e) => { e.preventDefault(); if (onNavigate) { onNavigate(ontologyId || ""); } }} > {ontologyId} </EuiLink> ``` @rombaum any idea?