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

[grid-ui] Changed BrowserRouter to HashRouter to allow pages to refresh. #8717

Merged
merged 3 commits into from
Sep 22, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[grid-ui] Changed BrowserRouter to HashRouter to allow pages to refresh.
  • Loading branch information
pujagani committed Sep 18, 2020
commit 4573af67c127d17e0e67db82579549f770f0bdff
2 changes: 1 addition & 1 deletion javascript/grid-ui/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { ApolloClient } from "apollo-client";
import { HttpLink } from "apollo-link-http";
import ReactModal from "react-modal";
import { ApolloProvider } from "react-apollo";
import { BrowserRouter as Router, Route, Switch } from "react-router-dom";
import { HashRouter as Router, Route, Switch } from "react-router-dom";

// css import order is important
/* 1 */ import "./css/theme.css";
Expand Down