Skip to content

Commit ec68096

Browse files
authored
Version 1.0.18 (#507)
1 parent 0db1b3d commit ec68096

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Parse Dashboard Changelog
22

3+
### 1.0.18
4+
5+
* Fix: Revert history change that was causing issues when mounting on express
6+
37
### 1.0.17
48

59
* Fix: Revert mount path change that was causing issues when mounting on express

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
],
2020
"homepage": "https://github.com/ParsePlatform/parse-dashboard",
2121
"bugs": "https://github.com/ParsePlatform/parse-dashboard/issues",
22-
"version": "1.0.17",
22+
"version": "1.0.18",
2323
"repository": {
2424
"type": "git",
2525
"url": "https://github.com/ParsePlatform/parse-dashboard"

src/components/Icon/Icon.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ let Icon = ({ name, fill, width, height }) => {
1818
}
1919
return (
2020
<svg {...props} >
21-
<use xlinkHref={`/bundles/sprites.svg#${name}`} />
21+
<use xlinkHref={`bundles/sprites.svg#${name}`} />
2222
</svg>
2323
);
2424
};

src/dashboard/history.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
* the root directory of this source tree.
77
*/
88

9-
import { useRouterHistory } from 'react-router';
10-
import { createHistory } from 'history';
9+
import { browserHistory } from 'react-router';
1110

12-
export default useRouterHistory(createHistory)({
13-
basename: '/',
14-
});
11+
export default browserHistory;

0 commit comments

Comments
 (0)