Skip to content

Commit

Permalink
remove quick filter limit (#568)
Browse files Browse the repository at this point in the history
* remove quick filter limit

* Prettified Code!

* chore: 🔖 release

* ci:

* ci:

* ci: disable issue checker

---------

Co-authored-by: Gustav-Eikaas <Gustav-Eikaas@users.noreply.github.com>
  • Loading branch information
Gustav-Eikaas and Gustav-Eikaas authored Dec 21, 2023
1 parent bdeb70b commit eab4970
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-issue-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions:
statuses: read,
}
on:
pull_request:
workflow_dispatch:

jobs:
issue-check:
Expand Down
2 changes: 1 addition & 1 deletion packages/power-bi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/workspace-powerbi",
"version": "1.0.12",
"version": "1.0.13",
"type": "module",
"sideEffects": false,
"license": "MIT",
Expand Down
22 changes: 10 additions & 12 deletions packages/power-bi/src/lib/components/QuickFilter/QuickFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,17 @@ export const PowerBIQuickFilter = ({ controller }: PowerBIQuickFilterProps): JSX
<StyledCompactFilterWrapper>
<StyledQuickFilterWrapper>
{slicerFilters.map((s, i) => {
i < 9 && shownFilters.push(s.type);
shownFilters.push(s.type);
return (
i < 9 && (
<PowerBiFilterGroup
activeFilters={activeFilters[s.type]}
controller={controller}
handleOnChange={(filter: PowerBiFilterItem, singleClick?: boolean) =>
handleOnChange(s, filter, singleClick)
}
group={s}
key={s.type + i}
/>
)
<PowerBiFilterGroup
activeFilters={activeFilters[s.type]}
controller={controller}
handleOnChange={(filter: PowerBiFilterItem, singleClick?: boolean) =>
handleOnChange(s, filter, singleClick)
}
group={s}
key={s.type + i}
/>
);
})}
</StyledQuickFilterWrapper>
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace-fusion/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/workspace-fusion",
"version": "6.1.1",
"version": "6.1.2",
"type": "module",
"sideEffects": false,
"license": "MIT",
Expand Down

0 comments on commit eab4970

Please sign in to comment.