* Remove , at the end of row in the lastest children in webhook.

This commit is contained in:
liumengyi
2023-11-14 16:02:50 +08:00
parent 3ded2e74d6
commit 9c8414e4a0
6 changed files with 26 additions and 26 deletions
+4 -4
View File
@@ -103,13 +103,13 @@ foreach($fields as $field => $attr)
set::label($title),
set::control($control),
set::value($default),
set::required($required),
set::required($required)
),
$notice ? formGroup
(
$field == 'url' ? setID('urlNote') : null,
html($notice),
) : null,
html($notice)
) : null
);
}
@@ -122,7 +122,7 @@ formPanel
setClass('webhookType'),
set::label($lang->webhook->type),
formHidden('type', $webhook->type),
zget($lang->webhook->typeList, $webhook->type),
zget($lang->webhook->typeList, $webhook->type)
),
$formItems
);