mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 18:14:19 -08:00
Add title to IQ iframes
This commit is contained in:
parent
ec6aacae08
commit
6bd9d202dc
1 changed files with 2 additions and 2 deletions
|
@ -9,9 +9,9 @@ interface IIQContactForm {
|
||||||
const IQContactForm = ({messageType}:IIQContactForm) => {
|
const IQContactForm = ({messageType}:IIQContactForm) => {
|
||||||
if (messageType === '') return null;
|
if (messageType === '') return null;
|
||||||
if (messageType === CONTACT_COPY.MESSAGE_TYPES.BUG_REPORT.defaultMessage) {
|
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 {
|
} 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>;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue