Skip to content
Snippets Groups Projects
Commit 7b0efd9f authored by Sascha Eggenberger's avatar Sascha Eggenberger
Browse files

Issue #3375350: gin-table-scroll-wrapper prevents nested paragraph buttons from being clickable

parent e55253f0
No related branches found
No related tags found
1 merge request!281Issue #3375350: gin-table-scroll-wrapper prevents nested paragraph buttons from being clickable
Pipeline #14385 passed
......@@ -12,10 +12,8 @@ function gin_theme_suggestions_table_alter(array &$suggestions, array $variables
if (empty($variables['attributes']['class'])) {
return;
}
if (!($variables['attributes']['class'] instanceof \Traversable)) {
$variables['attributes']['class'] = [$variables['attributes']['class']];
}
if (in_array('field-multiple-table', $variables['attributes']['class'])) {
if (is_array($variables['attributes']['class']) && in_array('field-multiple-table', $variables['attributes']['class'])) {
$suggestions[] = 'table__simple';
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment