Skip to content

Commit

Permalink
[TASK] Remove unnecessary brackets in GroupElement
Browse files Browse the repository at this point in the history
Resolves: #102473
Releases: main, 12.4
Change-Id: Iac4b1884e5a4c4f49c3e346b96795366f5bccdd1
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/81896
Tested-by: core-ci <typo3@b13.com>
Reviewed-by: Nikita Hovratov <nikita.h@live.de>
Tested-by: Nikita Hovratov <nikita.h@live.de>
  • Loading branch information
nhovratov committed Nov 23, 2023
1 parent d1ce526 commit ab48128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typo3/sysext/backend/Classes/Form/Element/GroupElement.php
Expand Up @@ -249,7 +249,7 @@ public function render()
$html[] = '<div class="formengine-field-item t3js-formengine-field-item">';
$html[] = $fieldInformationHtml;
$html[] = '<div class="form-wizards-wrap">';
if ((!isset($config['hideSuggest']) || (bool)$config['hideSuggest'] !== true)) {
if (!isset($config['hideSuggest']) || (bool)$config['hideSuggest'] !== true) {
$html[] = '<div class="form-wizards-items-top">';
$html[] = '<div class="autocomplete t3-form-suggest-container">';
$html[] = '<div class="input-group">';
Expand Down

0 comments on commit ab48128

Please sign in to comment.