I have an add to row action and need a dynamic link for the notify column to be added to the table
It's currently like this:
<@{outputs('ahref')}="https://@{outputs('Environment_URL')}/main.aspx?appid=@{outputs('AppId')}&pagetype=entityrecord&etn=cr4c1_intakeform&id=@{triggerOutputs()?['body/cr4c1_intakeformid']}">New Project Submission</a>
and shows in the outputs and table as exactly that:

I tried a compose action with this:
replace(replace(replace(outputs('HTML_Link'),'<a href="','<a href="'),'">','">'),'</a>','</a>')
but it didn't do anything in this scenario.
Does anyone know how to show only the text New Project Submission while still being a clickable link?