Tested in drupal 11, hide or show summary link does not appeared after disabling textarea. below are the screen shots of summary field with text area, it doesnt have the hide or show summary link. After disabling textarea it also disables the summary field along with it.
Screenshot of before disabling the text-area.
Screenshot of after disabling the text-area.
Ran the tests related to the line breaks, works as expected in drupal 11.
Tested in drupal 11 claro theme, issue is reproduced,
I added the css style
.form-element--type-select>option,.form-element--type-select-multiple>option {
text-wrap: auto;
}
on file core/themes/claro/css/components/form--select.css
it wraps the long text without any trimming. Below is the screen shot after and before applying the css style.
Before applying the css style
After applying the css style
Tested in drupal 11 claro theme, display of autocomplete values are not overlapping with search icon, not able to reproduce the issue. Below is the screen shot of it.
I don't think focus on empty label is an issue. Already we are displaying the error messages and highlighting the label with red color. Intuitively user get know what happened on that field.
Checked in drupal 11 claro theme, not able to reproduce the issue.
below is the screen shot of foucs highlighting the empty label field.
Checked in drupal 11 claro theme, not able to reproduce the issue.
Below is the screen shot of edit-media library working as expected.
Checked in drupal 11 claro theme in chrome and microsoft edge browsers, not able to reproduce the issue. Below is the screen shot of working display terms.
Checked in Drupal 11 claro theme, not able to reproduce the issue. below is the screen shot of working as expected.
Below is the patch, in drupal 11
โ
Tested it in drupal 11 with below description.
1. created a view
2. created the filter of authored on field and exposed it
3. tested the filter field with before adding ajax to exposed form.
4. tested the filter field with after adding ajax to exposed form.
Before adding ajax, filter parameters are taken from url and giving expected output.
After adding ajax, filter parameters which still exist in url are not taken to get results.
It is working as expected.
Below is the screen shot of before adding ajax.
Below is the screen shot of after adding ajax.
checked the issue, still exists. Created a patch below is that it contains current timestamp added to offsets to resolve the offset issue.
โ
niranjan_panem โ made their first commit to this issueโs fork.
We can alter the numeric date field to actual date time field through drupal's hook_form_views_exposed_form_alter
below is the code using the hook
function views_form_views_exposed_form_alter(&$form, FormStateInterface $form_state, $form_id){
if($form_id=="views_exposed_form"){
$form["field_published_date_time_stamp_value"]["#type"]='datetime';
}
}
Below are the screen shots of before and after applying the drupal hook
Before
After
Checked the text-field re-sizing, working as expected below is the screen shot of it.
Before
After
Checked the resizing of browse tokens works as per expected behaviour, below is the screen shot of it.
Checked the tablefield module web page below link
https://www.drupal.org/project/tablefield/releases/3.0.0-beta1 โ
has the patch from below issue link
https://www.drupal.org/i/3397688 โ
In drupal 11 claro theme suffix for file-size is not added in preprocess_image_widget. Below is the screen shot of it.
Checked the steps to reproduce in drupal 11, actually if we selected multiple select options in expose filter settings in views setting page. Drupal automatically sets the query parameter to array parameters like test-filter-grouped-id?nid%5B2%5D=2
. Below is the screen shot of it.
checked in drupal 11, CKEditor5 automatically adds paragraph tags to elements. Currently, this issue cannot be resolved without an update from the CKEditor 5 maintainers.
hi @maskedjellybean,
I created a custom module and added the code mentioned in steps to reproduce in drupal-11, I got below warnings.
PHP Warning: class_implements(): Class Drupal\modules\access_check_module\access\DeleteNodeAccessChecker does not exist and could not be loaded in /var/www/html/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterAccessChecksPass.php on line 46
Warning: class_implements(): Class Drupal\modules\access_check_module\access\DeleteNodeAccessChecker does not exist and could not be loaded in /var/www/html/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterAccessChecksPass.php on line 46
PHP Fatal error: Uncaught TypeError: in_array(): Argument #2 ($haystack) must be of type array, false given in /var/www/html/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterAccessChecksPass.php
can you please give information on how you got the issue. if possible, please share screen shot of it.
Tested in drupal 11 by setting claro theme as default theme and audio and video html5 templates exists in below path
core/themes/claro/templates/classy/field/
audio and video files are working properly with htm5 templates. Below is the screen shots of audio and video files in claro theme.
1. video file
2. audio file
The missing files of html5 templates of audio and video issue not able to reproduce.
This issue is outdated.
this issue is outdated, not applicable to drupal 11. I'm closing this issue as outdated.
In Drupal 11 creating a button field option is not available, we can add button field through custom field plugin through module, but this iss ue is outdated and cannot be reproduced in drupal 11.
Checked the issue in drupal 11, not able to reproduce the issue, below is the screenshot of it. I'm closing this issue.
In Drupal 11 the labels in media library moved to center below the file, below is the screen shot of it.
I tested it in drupal 11 version, not able to reproduce the issue. attached the screen shot.
we can close this issue.
I'm not able to reproduce the issue on drupal 11 clean install.
I added the ajax for field require summary check box to stop uncheck summary, this will add " " to default summary field to continue to save the settings. uploaded the patch and screen shots in zip file related to require summary checkbox.
niranjan_panem โ made their first commit to this issueโs fork.
I tested the issue, views-pages and exposed forms are working fine in drupal, but not able to reproduce the issue.
Removed the tag for unix timestamp in views rest export, below is the patch for it.
tag removed code
niranjan_panem โ made their first commit to this issueโs fork.
I added the required attribute in pager options form in views below is the patchhttps://git.drupalcode.org/project/drupal/-/merge_requests/11050.patch
niranjan_panem โ made their first commit to this issueโs fork.
niranjan_panem โ made their first commit to this issueโs fork.