- Issue created by @lazzyvn
- last update
11 months ago Patch Failed to Apply - last update
11 months ago Patch Failed to Apply - First commit to issue fork.
- last update
11 months ago 130 pass - ๐ฎ๐ณIndia himanshu_jhaloya Indore
Patch Failed to Apply. Recreate the new patch Please Review.
- Status changed to Needs review
11 months ago 11:59am 23 February 2024 - Status changed to Postponed: needs info
11 months ago 1:29am 3 March 2024 - ๐ซ๐ทFrance dqd London | N.Y.C | Paris | Hamburg | Berlin
Thanks for the report and the efforts in here!
But first: Both patches are missing comments/notes/details about what has been changed and why it has been fixed this way. Also what has the second patch done differently?
Apart from that: I decreased the issue priority. Descriptions of the Priority โ and Status โ values can be found in the Drupal project issues โ documentation.
And also, please provide patches and MR always against latest dev. Thanks!
- ๐ซ๐ทFrance lazzyvn paris
Hello,
I'm sorry but I don't know how to report all the information you need.
You can check with php 8.2 required for drupal 10
in node form for example, if you can hook alter form you can add ajax event for field and ajax rebuild the form, then no need to return all elements. that means it will have empty elements. Sopublic function func buildJquerySelectorForField(array $field); public function elementAddProperty(array $element, $property, $value, $position = 'prepend');
php 8.1 below it will not check the variable type in the method but 8.2 will sort the fatal error. For me it is critcal bug because Drupal 10 require php 8.2
I suggest to change topublic function func buildJquerySelectorForField($field) public function elementAddProperty($element, $property, $value, $position = 'prepend')
or
public function func buildJquerySelectorForField(mixed $field) public function elementAddProperty(mixed $element, $property, $value, $position = 'prepend')
I check the patch it works for the latest branch dev. I will make a merge request if you need it
BTW: Conditional Fields module is very interesting, can you add me as maintainer, i can contribute my time to fix all the errors of phpcs, issue report and validate with gitlab-ci
- Status changed to Needs work
11 months ago 11:13am 4 March 2024 - ๐ซ๐ทFrance dqd London | N.Y.C | Paris | Hamburg | Berlin
Thanks for coming back and reporting more details! Very much appreciated. Very helpful. And yes a reroll or MR would be very much appreciated! +1
oh and, Sorry but I have to decrease the issue priority. Descriptions of the Priority โ and Status โ values can be found in the Drupal project issues โ documentation.
can you add me as maintainer, i can contribute my time to fix all the errors of phpcs, issue report and validate with gitlab-ci
Thanks for your will to help! We had a co-maintainer request accepted some days ago exactly in the scope of the tasks you describe, thanks, but if we need help, I would love to come back to your offer. +1 Very much appreciated. I have cleaned up the issue queue over the whole weekend with over 200 issues and committed RTBCs and more or less no sleep and plan an upcoming BETA release soon. Stay tuned.
- ๐ฎ๐ณIndia samit.310@gmail.com
samit.310@gmail.com โ made their first commit to this issueโs fork.
- Merge request !453423256: Error with PHP 8.2 and field group โ (Open) created by samit.310@gmail.com
- last update
9 months ago 130 pass - Status changed to Needs review
9 months ago 7:48am 23 April 2024 - ๐ฎ๐ณIndia samit.310@gmail.com
HI @dqd
Reroll and MR created, Please review.
Thanks
Samit K. - Status changed to Needs work
6 months ago 4:37pm 23 July 2024 - heddn Nicaragua
This should have a rebase now that Gitlab CI testing is enabled.
- Status changed to Needs review
6 months ago 9:24am 29 July 2024 - ๐ฎ๐ณIndia samit.310@gmail.com
Hi @heddn,
Rebased with 4.x, Please review.
Thanks
Samit K. - heddn Nicaragua
Unfortunately, I think this needs another rebase. I think the major change here is changing from array => mixed?