Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Step Progress Bar Bug #661

Merged
merged 3 commits into from Jan 20, 2021
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Prev

Fix navigation

  • Loading branch information
benstrumeyer committed Jan 20, 2021
commit 489ebb73ac1ee41325e9b25ba689db47320dfe7a
@@ -11,6 +11,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0
*/

import { withRouter } from 'react-router-dom';
import BlockSettingsView from './BlockSettingsView';
import { buildReduxHOC } from '../../../../shared-hub/utils';
import { logout } from '../../../../Account/AccountActions';
@@ -29,4 +30,4 @@ const actionCreators = {
setSetupStep,
};

export default buildReduxHOC(null, actionCreators, BlockSettingsView);
export default withRouter(buildReduxHOC(null, actionCreators, BlockSettingsView));
@@ -11,6 +11,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0
*/

import { withRouter } from 'react-router-dom';
import ChooseDefaultSearchView from './ChooseDefaultSearchView';
import { buildReduxHOC } from '../../../../shared-hub/utils';
import { setSetupStep } from '../../../../shared-hub/actions/SetupLifecycleActions';
@@ -19,4 +20,4 @@ const actionCreators = {
setSetupStep,
};

export default buildReduxHOC(null, actionCreators, ChooseDefaultSearchView);
export default withRouter(buildReduxHOC(null, actionCreators, ChooseDefaultSearchView));
@@ -121,6 +121,7 @@ $medium-large-breakpoint: 1118px; // Break when 3 cards on the screen overflow t
&:hover {
background-position: 0% 50%;
transition: 0.25s all;
color: $white;
}
&:focus {
color: $white;
ProTip! Use n and p to navigate between commits in a pull request.