@@ -60,18 +60,18 @@ |
||
60 | 60 | $html = []; |
61 | 61 | if (!empty($selectIcons)) { |
62 | 62 | $html[] = '<div class="t3js-forms-select-single-icons icon-list">'; |
63 | - $html[] = '<div class="row">'; |
|
63 | + $html[] = '<div class="row">'; |
|
64 | 64 | foreach ($selectIcons as $i => $selectIcon) { |
65 | - $active = $selectIcon['active'] ? ' active' : ''; |
|
66 | - $html[] = '<div class="col col-auto item' . $active . '">'; |
|
65 | + $active = $selectIcon['active'] ? ' active' : ''; |
|
66 | + $html[] = '<div class="col col-auto item' . $active . '">'; |
|
67 | 67 | if (is_array($selectIcon)) { |
68 | 68 | $html[] = '<a href="#" title="' . htmlspecialchars($selectIcon['title'], ENT_COMPAT, 'UTF-8', false) . '" data-select-index="' . htmlspecialchars((string)$selectIcon['index']) . '">'; |
69 | - $html[] = $selectIcon['icon']; |
|
69 | + $html[] = $selectIcon['icon']; |
|
70 | 70 | $html[] = '</a>'; |
71 | 71 | } |
72 | - $html[] = '</div>'; |
|
72 | + $html[] = '</div>'; |
|
73 | 73 | } |
74 | - $html[] = '</div>'; |
|
74 | + $html[] = '</div>'; |
|
75 | 75 | $html[] = '</div>'; |
76 | 76 | } |
77 | 77 |