Fix source links in 0x.js docs
This commit is contained in:
parent
48b3d85265
commit
25ec4cf7b0
@ -8,10 +8,13 @@ interface SourceLinkProps {
|
||||
version: string;
|
||||
}
|
||||
|
||||
const SUB_PKG = '0x.js';
|
||||
|
||||
export function SourceLink(props: SourceLinkProps) {
|
||||
const source = props.source;
|
||||
const githubUrl = constants.GITHUB_0X_JS_URL;
|
||||
const sourceCodeUrl = `${githubUrl}/blob/v${props.version}/${source.fileName}#L${source.line}`;
|
||||
const src = props.source;
|
||||
const url = constants.GITHUB_0X_JS_URL;
|
||||
// https://github.com/0xProject/0x.js/blob/0x.js%400.26.1/packages/0x.js/src/contract_wrappers/exchange_wrapper.ts
|
||||
const sourceCodeUrl = `${url}/blob/${SUB_PKG}%40${props.version}/packages/${SUB_PKG}/${src.fileName}#L${src.line}`;
|
||||
return (
|
||||
<div className="pt2" style={{fontSize: 14}}>
|
||||
<a
|
||||
|
Loading…
x
Reference in New Issue
Block a user