๐Ÿ‡ฎ๐Ÿ‡ณIndia @niranjan_panem

Gurugram
Account created on 29 December 2020, about 4 years ago
#

Recent comments

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

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.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

Ran the tests related to the line breaks, works as expected in drupal 11.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

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

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

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.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

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.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

Checked in drupal 11 claro theme, not able to reproduce the issue.
below is the screen shot of foucs highlighting the empty label field.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

Checked in drupal 11 claro theme, not able to reproduce the issue.
Below is the screen shot of edit-media library working as expected.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

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.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

Checked in Drupal 11 claro theme, not able to reproduce the issue. below is the screen shot of working as expected.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

Below is the patch, in drupal 11
โ†’

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

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.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

checked the issue, still exists. Created a patch below is that it contains current timestamp added to offsets to resolve the offset issue.
โ†’

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

niranjan_panem โ†’ made their first commit to this issueโ€™s fork.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

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

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

Checked the text-field re-sizing, working as expected below is the screen shot of it.

Before

After

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

Checked the resizing of browse tokens works as per expected behaviour, below is the screen shot of it.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

In drupal 11 claro theme suffix for file-size is not added in preprocess_image_widget. Below is the screen shot of it.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

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.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

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.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

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.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

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.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

This issue is outdated.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

this issue is outdated, not applicable to drupal 11. I'm closing this issue as outdated.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

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.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

Checked the issue in drupal 11, not able to reproduce the issue, below is the screenshot of it. I'm closing this issue.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

In Drupal 11 the labels in media library moved to center below the file, below is the screen shot of it.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

I tested it in drupal 11 version, not able to reproduce the issue. attached the screen shot.

we can close this issue.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

I'm not able to reproduce the issue on drupal 11 clean install.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

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.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

I tested the issue, views-pages and exposed forms are working fine in drupal, but not able to reproduce the issue.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

Removed the tag for unix timestamp in views rest export, below is the patch for it.
tag removed code

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

niranjan_panem โ†’ made their first commit to this issueโ€™s fork.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

niranjan_panem โ†’ made their first commit to this issueโ€™s fork.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram

niranjan_panem โ†’ made their first commit to this issueโ€™s fork.

๐Ÿ‡ฎ๐Ÿ‡ณIndia niranjan_panem Gurugram
Production build 0.71.5 2024