mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-18 03:01:05 +01:00
Rename 'proceedFrom' to 'offset'
This commit is contained in:
@@ -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 (
|
||||
|
||||
Reference in New Issue
Block a user