Skip to content

Commit dc55197

Browse files
authored
[5.x] Fix JsDriver::addToFormData call to match interface signature (#13463)
1 parent 7f8ccaf commit dc55197

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Forms/Tags.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public function create()
8181
if ($jsDriver) {
8282
$data['js_driver'] = $jsDriver->handle();
8383
$data['show_field'] = $jsDriver->copyShowFieldToFormData($data['fields']);
84-
$data = array_merge($data, $jsDriver->addToFormData($form, $data));
84+
$data = array_merge($data, $jsDriver->addToFormData($data));
8585
}
8686

8787
$this->addToDebugBar($data, $formHandle);

0 commit comments

Comments
 (0)