Account created on 23 January 2019, almost 6 years ago
#

Recent comments

🇵🇱Poland piotrkonefal

@Kobe Wright, In my opinion - though this is related, this is still a different project/subproject: https://www.drupal.org/project/openid_connect_windows_aad

I would create an issue ticket there and link this issue as a related.

🇵🇱Poland piotrkonefal

The patch from #16 is missing one more removal, that leads to PHP error. I am attaching updated version.

🇵🇱Poland piotrkonefal

Added a new version with fixed indentation.

🇵🇱Poland piotrkonefal

@sijumpk Chrome 120.0.6099.62 (Official Build) (arm64), MacOS Ventura 13.6.2

🇵🇱Poland piotrkonefal

I am facing exactly the same issue. I've temporarily added CSS Asset Injector to get around it, but it should be fixed in the theme itself.

.field-plugin-settings-edit {
  width: auto !important;
}

The original CSS contains this code:

.field-plugin-settings-edit {
    width: var(--space-m); // this is breaking the gear icon
    margin: 0;
    padding: 1px 0.5rem;
}

Line 55 of /core/themes/claro/css/theme/field-ui.admin.css.

I am facing the issue on Drupal & Claro 10.1.6

🇵🇱Poland piotrkonefal

The same issue seems to be occurring on Webforms. Conditional logic options based on state of `managed_file` field does not seem to work.
Steps to reproduce:

  1. Create a webform with a file field.
  2. In Webform configuration (Build > Elements section), choose 'Edit' option for 'Submit button(s)'.
  3. Switch to 'Conditions' tab.
  4. Set a condition as: Visible - If - File Field (is) - Filled
  5. Save webform settings.
  6. Go to the webform. Observe that submit button is hidden, based on configured condition.
  7. Upload a file - see that 'Submit' button is still NOT visible (but it should be)

There is a working workaround for that scenario:
1. Add custom webform handler and use it on affected webform.
2. Define alterForm() method and build conditional visibility there.
Example:

$form['elements']['actions']['#states'] = [
      'visible' => [
          '.webform-submission-activity-tasks-form :input[data-drupal-selector="edit-presentation-fids"]' => ['filled' => TRUE],
      ],
    ];

In terms of Webforms there is another issue I've caught which is related to this one. I've created a separate thread: https://www.drupal.org/project/webform/issues/3399906#comment-15308665 🐛 Conditional logic options are not getting saved Active

Production build 0.71.5 2024