diff --git a/app/assets/javascripts/integrations/edit/components/dynamic_field.vue b/app/assets/javascripts/integrations/edit/components/dynamic_field.vue
index 258cd1bf3654c5e78a571ca57e4accf68c5b2aab..4b0579a5bebbc0a3d88655e627d43f3ab4a47282 100644
--- a/app/assets/javascripts/integrations/edit/components/dynamic_field.vue
+++ b/app/assets/javascripts/integrations/edit/components/dynamic_field.vue
@@ -153,7 +153,7 @@ export default {
     :invalid-feedback="__('This field is required.')"
     :state="valid"
   >
-    <template #description>
+    <template v-if="!isCheckbox" #description>
       <span v-safe-html:[$options.helpHtmlConfig]="help"></span>
     </template>
 
@@ -161,6 +161,9 @@ export default {
       <input :name="fieldName" type="hidden" :value="model || false" />
       <gl-form-checkbox :id="fieldId" v-model="model" :disabled="isInheriting">
         {{ checkboxLabel || humanizedTitle }}
+        <template #help>
+          <span v-safe-html:[$options.helpHtmlConfig]="help"></span>
+        </template>
       </gl-form-checkbox>
     </template>
     <template v-else-if="isSelect">
diff --git a/spec/frontend/integrations/edit/components/dynamic_field_spec.js b/spec/frontend/integrations/edit/components/dynamic_field_spec.js
index bf044e388eaa348d2be21765475a74ef0b712a1a..b0fb94d2b29e6b3c37d5ea9f1a69dcdbc71f98d3 100644
--- a/spec/frontend/integrations/edit/components/dynamic_field_spec.js
+++ b/spec/frontend/integrations/edit/components/dynamic_field_spec.js
@@ -61,7 +61,7 @@ describe('DynamicField', () => {
           });
 
           it(`renders GlFormCheckbox with correct text content when checkboxLabel is ${checkboxLabel}`, () => {
-            expect(findGlFormCheckbox().text()).toBe(checkboxLabel ?? defaultProps.title);
+            expect(findGlFormCheckbox().text()).toContain(checkboxLabel ?? defaultProps.title);
           });
 
           it('does not render other types of input', () => {
@@ -182,6 +182,17 @@ describe('DynamicField', () => {
         expect(findGlFormGroup().find('small').text()).toBe(defaultProps.help);
       });
 
+      describe('when type is checkbox', () => {
+        it('renders description with help text', () => {
+          createComponent({
+            type: 'checkbox',
+          });
+
+          expect(findGlFormGroup().find('small').exists()).toBe(false);
+          expect(findGlFormCheckbox().text()).toContain(defaultProps.help);
+        });
+      });
+
       it('renders description with help text as HTML', () => {
         const helpHTML = 'The <strong>URL</strong> of the project';