Account created on 10 March 2017, over 7 years ago
#

Merge Requests

More

Recent comments

🇮🇳India kalpanajaiswal

Updated the MR with minimum Drupal compatible version to support attribute discovery.
Please review.

Thank you!

🇮🇳India kalpanajaiswal

kalpanajaiswal changed the visibility of the branch 3453922-sort-the-option to active.

🇮🇳India kalpanajaiswal

Rerolled the patch for contrib module only.

🇮🇳India kalpanajaiswal

As per the suggestion .gitlab-ci.yml is removed from the commit.

🇮🇳India kalpanajaiswal

Both Patch and MR have been created to address the issue.

🇮🇳India kalpanajaiswal

kalpanajaiswal changed the visibility of the branch 3454448-add-btn-block-config to active.

🇮🇳India kalpanajaiswal

Hi Diwakar,
I have updated the Readme file as per the standards.

🇮🇳India kalpanajaiswal

MR created to sort the $handlers_options in EntityReferenceItem::fieldSettingsForm().

🇮🇳India kalpanajaiswal

I've been working on replicating this locally, and I believe it's functioning as expected after addressing other issues in the queue.
After looking into the issue " https://www.drupal.org/project/search_api_autocomplete/issues/3024266 Avoid multiple results for the same keyword Needs work "
The goal is to eliminate duplicate suggestions.

The specific question I have is regarding keywords that appear in both lowercase and uppercase.
For example, if we have "Backup" and "BACKUP," should the suggestions include both "backup" and "BACKUP," or just "backup"?
This needs to be aligned with the fix for issue 3024266.

I couldn't find a specific option to enable case-sensitive suggestions. However, if we want the suggestions to be case-sensitive, then the results should also be case-sensitive.

🇮🇳India kalpanajaiswal

The issue is not reproducible.
I have tested the feature with Drupal 10.2.7 & search_api_autocompleteVersion: 8.x-1.8 version.
Adding few screenshots for help.

🇮🇳India kalpanajaiswal

I tried to replicate the issue but it didn't reproduce.
Drupal version: 10.2.7
office_hours module version: 1.17.0

🇮🇳India kalpanajaiswal

MR has been created and covering all the points mentioned in remaining tasks.

🇮🇳India kalpanajaiswal

MR created to replace readme.txt file to readme.md file.

🇮🇳India kalpanajaiswal

MR created to replace readme.txt file to readme.md file.

🇮🇳India kalpanajaiswal

Created a MR
MR: https://git.drupalcode.org/project/drupal/-/merge_requests/8325

  /**
   * The fields on which to sort.
   *
   * @var array
   */
  protected $fields;

  /**
   * Constructs a new Sort object.
   *
   * Takes an array of sort fields. Example:
   *   [
   *     [
   *       'path' => 'changed',
   *       'direction' => 'DESC',
   *     ],
   *     [
   *       'path' => 'title',
   *       'direction' => 'ASC',
   *       'langcode' => 'en-US',
   *     ],
   *   ]
   *
   * @param array $fields
   *   The entity query sort fields.
   */
  public function __construct(array $fields) {
    $this->fields = $fields;
  }
🇮🇳India kalpanajaiswal

First param comment updated as per the parent class

🇮🇳India kalpanajaiswal

If you have an entity with a moderation state and want to run the scheduler on entity based on a moderation state.
It will not support.
For example add an article with a scheduler on to be published in future.
But if someone made any changes and moderation state updated in draft mode, it shouldn’t be published.

🇮🇳India kalpanajaiswal

Here is the thing.
If you look in to the file "inline_entity_form/src/Plugin/Field/FieldWidget/InlineEntityFormComplex.php"
Inside function "formElement"
A piece of code written to call the theme hook for each referenced entity.

$element['entities'] = [
      '#tree' => TRUE,
      '#theme' => 'inline_entity_form_entity_table',
      '#entity_type' => $target_type,
];

For example if we have 1000 reference entity, this theme hook be called 1000 times and due to this process is gets slow.

Just remove the '#theme' attribute and test the functionality.
UI will be broken as theme is not there but process will me much faster.

We faced the same issue and remove the '#theme' and handled broken UI separately

I am adding a screenshot for help.
I have just run a test with 25 reference entity, so there is nut much difference in loading time, but if you test this with more entity reference content like 200 or 300, you will see a huge difference.

🇮🇳India kalpanajaiswal

Merge request created to add the comment on construct object.
MR: https://www.drupal.org/project/drupal/issues/3450567 🐛 GenerateTheme::__construct() does not document its parameters Active

🇮🇳India kalpanajaiswal

Created one MR from patch 2.
Branch: 3424320-invalidargumentexception-issue

🇮🇳India kalpanajaiswal

kalpanajaiswal made their first commit to this issue’s fork.

🇮🇳India kalpanajaiswal

I tried all the above mentioned steps and below are the response.

When I visit "/fr/admin/content'
One popup came, I selected english

I refreshed the page and now I selected french

🇮🇳India kalpanajaiswal

I tried to change "Содержимое" to another the word.
Value is getting updated on "/admin/structure/types/manage/page/fields/node.page.body" page.
Even success message it printing right value.
But its not visible on other pages like "/admin/structure/types/manage/page/form-display",
"/admin/structure/types/manage/page/display",
"/node/add/page".

Its still showing the old value instead of new.
Looks like issue now.

I replicated the same behavior in Drupal 9.5.11 as well.

🇮🇳India kalpanajaiswal

The issue is not reproducible in Drupal 10.2.6
Feature is working as expected, adding few screenshots for help.

🇮🇳India kalpanajaiswal

The issue is not reproducible in 10.2.6.
Functionality is working as expected adding screenshots for help.

🇮🇳India kalpanajaiswal

Converted Editor plugin discovery to attributes.

🇮🇳India kalpanajaiswal

Converted Editor plugin discovery to attributes.

🇮🇳India kalpanajaiswal

Remove library, drupal settings and other attachments from response.

🇮🇳India kalpanajaiswal

Updated incorrect error-message class for the details and detail vertical tabs components.

🇮🇳India kalpanajaiswal

Updated incorrect error-message class for the details and detail vertical tabs components.

🇮🇳India kalpanajaiswal

I followed this doc https://relay.so/docs/1.x/installation#using-docker for installation but getting this error
"PHP message: Error: Class "Relay\Relay" not found in /var/www/html/docroot/modules/contrib/redis/src/Client/Relay.php on line 14 #0 /var/www/html/docroot/modules/contrib/redis/src/ClientFactory.php(186): Drupal\redis\Client\Relay->getClient('redis', 6379, NULL, NULL, Array, false)

Production build 0.71.5 2024