Skip to content

Commit e844305

Browse files
jkevanFBerthelot
authored andcommitted
BACKLOG-12197: fix ordering of actions on firefox and opera (#70)
1 parent 5e866d0 commit e844305

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/react-material/src/actions/DisplayActions.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ class DisplayActions extends React.Component {
2626
}
2727
}
2828

29-
return 'undefined';
29+
// should be placed at the end if no priority defined, returning 'undefined' is making the ordering bug on FF and Opera
30+
return 99999;
3031
}]);
3132

3233
if (filter) {

0 commit comments

Comments
 (0)