Add title to IQ iframes

This commit is contained in:
Vim USDS 2021-10-27 17:48:27 -07:00
parent ec6aacae08
commit 6bd9d202dc

View file

@ -9,9 +9,9 @@ interface IIQContactForm {
const IQContactForm = ({messageType}:IIQContactForm) => {
if (messageType === '') return null;
if (messageType === CONTACT_COPY.MESSAGE_TYPES.BUG_REPORT.defaultMessage) {
return <iframe frameBorder="0" src="https://iqconnect.iqfed.com/iqextranet/EForm.aspx?__cid=46PREPROD1&__fid=100035&iframe=Y" width="100%" height="891"></iframe>;
return <iframe title="Bug Report Form" frameBorder="0" src="https://iqconnect.iqfed.com/iqextranet/EForm.aspx?__cid=46PREPROD1&__fid=100035&iframe=Y" width="100%" height="891"></iframe>;
} else {
return <iframe frameBorder="0" src="https://iqconnect.iqfed.com/iqextranet/EForm.aspx?__cid=46PREPROD1&__fid=100039&iframe=Y" width="100%" height="579"></iframe>;
return <iframe title="Feedback Form" frameBorder="0" src="https://iqconnect.iqfed.com/iqextranet/EForm.aspx?__cid=46PREPROD1&__fid=100039&iframe=Y" width="100%" height="579"></iframe>;
}
};