Rename 'proceedFrom' to 'offset'

This commit is contained in:
René Pfeuffer
2020-02-19 09:23:23 +01:00
parent 6b3f36e7ea
commit fe1591171d
14 changed files with 51 additions and 51 deletions

View File

@@ -129,9 +129,9 @@ class FileTree extends React.Component<Props, State> {
baseUrlWithRevision += "/" + encodeURIComponent(tree.revision);
}
const proceedFrom = queryString.parse(location.search).proceedFrom;
if (proceedFrom) {
baseUrlWithRevision += "?proceedFrom=" + proceedFrom;
const offset = queryString.parse(location.search).offset;
if (offset) {
baseUrlWithRevision += "?offset=" + offset;
}
return (