Skip to content

Commit

Permalink
fix(sentry): SKFP-1379 fix graph JS errors
Browse files Browse the repository at this point in the history
  • Loading branch information
GaelleA committed Jan 2, 2025
1 parent c1dfd3c commit fa2a264
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
3 changes: 3 additions & 0 deletions packages/ui/Release.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 10.15.2 2025-01-02
- fix: SKFP-1379 fis JS errors in graph

### 10.15.1 2024-12-18
- fix: FLUI-145 change color between active and hover for venn chart

Expand Down
4 changes: 2 additions & 2 deletions packages/ui/package-lock.json

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

2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ferlab/ui",
"version": "10.15.1",
"version": "10.15.2",
"description": "Core components for scientific research data portals",
"publishConfig": {
"access": "public"
Expand Down
4 changes: 4 additions & 0 deletions packages/ui/src/components/Charts/patterns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ export const defs = [
background: 'inherit',
color: 'rgba(255,255,255,0.15)',
id: 'line-left',
lineWidth: 2,
rotation: -45,
size: 4,
spacing: 5,
stagger: true,
type: 'patternLines',
},
Expand All @@ -30,8 +32,10 @@ export const defs = [
background: 'inherit',
color: 'rgba(255,255,255,0.15)',
id: 'line-right',
lineWidth: 2,
rotation: 45,
size: 4,
spacing: 5,
stagger: true,
type: 'patternLines',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const FieldQueryPill = ({
wrapper={(children) => (
<Dropdown
getPopupContainer={(trigger) => trigger.parentElement!}
onVisibleChange={(visible) => {
onOpenChange={(visible) => {
if (visible) {
setDropdownContent(undefined);
}
Expand Down

0 comments on commit fa2a264

Please sign in to comment.