diff --git a/themes/finc/templates/record/checkbox.phtml b/themes/finc/templates/record/checkbox.phtml
index bf979045036f84c7d740a719723e22a63017e79f..66857ea859ac6d49712f1f5cb0b2d36052f9127c 100644
--- a/themes/finc/templates/record/checkbox.phtml
+++ b/themes/finc/templates/record/checkbox.phtml
@@ -2,13 +2,12 @@
 <?php /* finc adds php for more specific labels, #18754 */ ?>
 <?php $label = isset($this->context) ? 'select_item_' . $this->context : 'select_item'; ?>
 <label class="record-checkbox hidden-print">
-  <?php /* finc adds aria-label and -describedby */ ?>
+  <?php /* finc adds aria-label and -describedby and space in front of form attribute */ ?>
   <input
       class="checkbox-select-item"
       type="checkbox"
       name="ids[]"
-      value="<?=$this->id?>"
-      <?php if (isset($this->formAttr)): ?>form="<?=$this->formAttr ?>"<?php endif; ?>
+      value="<?=$this->id?>"<?php if (isset($this->formAttr)): ?> form="<?=$this->formAttr ?>"<?php endif; ?>
       aria-describedby="<?=$this->id?>"
       aria-label="<?=$this->transEscAttr($label)?>"
   />