BUG: Case and Contact admin links need updating

In the form submission output, the admin case link ({{this.formSubmissionData.submissionid}}) and the admin contact link ({{this.formSubmissionData.crmcontactlink}}) are still outputting the old admin URL format (with the #), eg:
https://mydomain.com/admin/#/form-submissions/154
This appears to stop the link working now with the SSO redirects.

WORKAROUND:
Use a Liquid remove filter to remove the offending /#:

{{this.formSubmissionData.crmformsubmissionlink | remove: '/#'}}
{{this.formSubmissionData.crmcontactlink | remove: '/#'}}

@Eugene - Will you add this to one of the upcoming sprints or should I add it to the public backlog? :slight_smile:

We will add this in the next release.

1 Like

@Adam.Wilson Do we know if we do impliment the fix u suggested… it will be broken again once its actually fixed? i only ask because we have a number of clients that rely specifically on this link…

@James, I wouldn’t think it will be a problem as I can’t see there ever being /# in the URL going forward so the remove filter just won’t do anything after the fix.

1 Like