Skip to content

Commit 95891a6

Browse files
committed
Axes panel visibility issues
1 parent 53fb42e commit 95891a6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/default_panels/StyleAxesPanel.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,10 @@ class StyleAxesPanel extends Component {
498498
<AxesFold
499499
name={_('Hover Projections')}
500500
axisFilter={axis =>
501-
!axis._name.includes('angular') && !axis._name.includes('radial')
501+
!(
502+
axis._subplot.includes('ternary') ||
503+
axis._subplot.includes('polar')
504+
)
502505
}
503506
>
504507
<Radio

0 commit comments

Comments
 (0)