aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/documentation/documentation.tsx
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-03-03 12:36:08 +0800
committerFabio Berger <me@fabioberger.com>2018-03-03 12:36:08 +0800
commit0afe45b3a830bfefc4f9b51823891b99be5261fa (patch)
treed79f136cf5df69c3c85557bcd11616ca74ab505b /packages/website/ts/pages/documentation/documentation.tsx
parentf9a37168b034dd20868d1ffe1d2934db6effd39a (diff)
downloaddexon-sol-tools-0afe45b3a830bfefc4f9b51823891b99be5261fa.tar
dexon-sol-tools-0afe45b3a830bfefc4f9b51823891b99be5261fa.tar.gz
dexon-sol-tools-0afe45b3a830bfefc4f9b51823891b99be5261fa.tar.bz2
dexon-sol-tools-0afe45b3a830bfefc4f9b51823891b99be5261fa.tar.lz
dexon-sol-tools-0afe45b3a830bfefc4f9b51823891b99be5261fa.tar.xz
dexon-sol-tools-0afe45b3a830bfefc4f9b51823891b99be5261fa.tar.zst
dexon-sol-tools-0afe45b3a830bfefc4f9b51823891b99be5261fa.zip
Hash hash instead of prefixedHash to scrollToHash function
Diffstat (limited to 'packages/website/ts/pages/documentation/documentation.tsx')
-rw-r--r--packages/website/ts/pages/documentation/documentation.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/website/ts/pages/documentation/documentation.tsx b/packages/website/ts/pages/documentation/documentation.tsx
index 5963fe851..699bef7a8 100644
--- a/packages/website/ts/pages/documentation/documentation.tsx
+++ b/packages/website/ts/pages/documentation/documentation.tsx
@@ -76,7 +76,8 @@ const styles: Styles = {
export class Documentation extends React.Component<DocumentationProps, DocumentationState> {
public componentDidUpdate(prevProps: DocumentationProps, prevState: DocumentationState) {
if (!_.isEqual(prevProps.docAgnosticFormat, this.props.docAgnosticFormat)) {
- utils.scrollToHash(this.props.location.hash, configs.SCROLL_CONTAINER_ID);
+ const hash = this.props.location.hash.slice(1);
+ utils.scrollToHash(hash, configs.SCROLL_CONTAINER_ID);
}
}
public render() {