Skip to content

Commit

Permalink
Merge pull request #447 from mlibrary/LIBSEARCH-947-button-in-actions…
Browse files Browse the repository at this point in the history
…-section-does-not-activate

[LIBSEARCH-947] Button in Actions section does not activate
  • Loading branch information
erinesullivan authored Mar 29, 2024
2 parents 9239dde + eb31e2f commit cada39d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 26 deletions.
23 changes: 7 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 6 additions & 9 deletions src/modules/filters/components/Filters/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,17 +282,14 @@ function FilterGroupMultiselect ({ filters, group, uid, uuid, activeFilters }) {
<span>{group.metadata.name}</span>
<span
css={{
color: 'var(--ds-color-neutral-300)'
color: 'var(--ds-color-neutral-300)',
'details:not([open]) > summary > & > svg:first-of-type, details[open] > summary > & > svg:last-of-type': {
display: 'none!important'
}
}}
>
<Icon
size={24}
d='M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z'
/>
<Icon
size={24}
d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z'
/>
<Icon size={24} icon='expand_less' />
<Icon size={24} icon='expand_more' />
</span>
</summary>
<FilterGroupFilters
Expand Down
2 changes: 1 addition & 1 deletion src/modules/lists/components/List/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function List (props) {
<section className='lists-section'>
<h2 className='lists-actions-heading u-display-inline-block u-margin-right-1 u-margin-bottom-none'>Actions</h2>
<span className='text-small'>Select what to do with this list.</span>
<ActionsList {...props} setActive={setActive} active={active} prejudice={prejudice.instance} />
<ActionsList {...props} setActive={setActive} active={active} prejudice={prejudice.instance} datastore={activeDatastore} />
</section>
{tempList.map((record, index) => {
return (
Expand Down

0 comments on commit cada39d

Please sign in to comment.