Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seanchoi-dev committed Sep 19, 2024
1 parent c3c9bcc commit 9fb7c83
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions libs/blocks/faas-config/faas-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,13 @@ const CopyBtn = () => {
}
if (input.id === 'pjs36' && !/^[A-Za-z0-9]*$/.test(input.value)) {
inputValidation = false;
setErrorMessage('Campagin ID allows only letters and numbers');
setErrorMessage('Campaign ID allows only letters and numbers');
input.focus();
return;
}
if (input.name === 'v' && !/^[A-Za-z0-9]*$/.test(input.value)) {
inputValidation = false;
setErrorMessage('Campagin ID allows only letters and numbers');
setErrorMessage('Campaign ID allows only letters and numbers');
input.focus();
}
});
Expand Down Expand Up @@ -278,7 +278,7 @@ const RequiredPanel = () => {
values=${values}
title="Multiple Campaign Ids"
>
<${FormInput} name="v" label="Campagin ID" />
<${FormInput} name="v" label="Campaign ID" />
<${FormInput} name="l" label="Description" />
<//>
`);
Expand Down Expand Up @@ -359,15 +359,15 @@ const RequiredPanel = () => {
values=${context.state.q103}
title="Multiple Campaign Ids"
>
<${FormInput} name="v" label="Campagin ID" />
<${FormInput} name="v" label="Campaign ID" />
<${FormInput} name="l" label="Description" />
<//>`;
setField103(internalCampIDs);
setFieldMultiCampStyle(html`<${Input} label="Multi Campaign Radio Styling" prop="multicampaignradiostyle" type="checkbox" />`);
}
});
if (formId !== '63') {
setFieldpjs36(html`<${Input} label="Internal Campagin ID" prop="pjs36" placeholder="ex) 70114000002XYvIAAW" />`);
setFieldpjs36(html`<${Input} label="Internal Campaign ID" prop="pjs36" placeholder="ex) 70114000002XYvIAAW" />`);
}
// eslint-disable-next-line no-use-before-define
}).catch((err) => {
Expand Down Expand Up @@ -404,7 +404,7 @@ const RequiredPanel = () => {
};
const OptionalPanel = () => html`
<${Input} label="Form Title" prop="title" />
<${Input} label="Onsite Campagin ID" prop="pjs39" />
<${Input} label="Onsite Campaign ID" prop="pjs39" />
<${Input} label="Hide Prepopulated Fields" prop="hidePrepopulated" type="checkbox" />
<${Input} label="Auto Submit" prop="as" type="checkbox" />
<${Input} label="Auto Response" prop="ar" type="checkbox" />
Expand Down

0 comments on commit 9fb7c83

Please sign in to comment.