Fixed issue with class name in checkbox and radio

Issue: class name being 'activeright' instead of 'active right' .
Fix: fixed by adding space around the class name ' right '.
This commit is contained in:
Aswin Giri
2022-10-23 22:09:17 +05:45
committed by GitHub
parent 9cd81cfbc0
commit 99d2b4ec27
+2 -2
View File
@@ -3576,7 +3576,7 @@ if ( ! class_exists( 'um\core\Fields' ) ) {
$i++;
if ($i % 2 == 0) {
$col_class = 'right';
$col_class = ' right ';
} else {
$col_class = '';
}
@@ -3703,7 +3703,7 @@ if ( ! class_exists( 'um\core\Fields' ) ) {
$i++;
if ( $i % 2 == 0 ) {
$col_class = 'right';
$col_class = ' right ';
} else {
$col_class = '';
}