mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-11 07:55:47 +01:00
Fix handling of slashes in branches in 'offset loading'-case
This commit is contained in:
@@ -109,7 +109,12 @@ class FileTree extends React.Component<Props, State> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
loadMore = () => {
|
loadMore = () => {
|
||||||
this.props.fetchSources(this.props.repository, this.props.revision, this.props.path, this.props.hunks.length);
|
this.props.fetchSources(
|
||||||
|
this.props.repository,
|
||||||
|
decodeURIComponent(this.props.revision),
|
||||||
|
this.props.path,
|
||||||
|
this.props.hunks.length
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
renderTruncatedInfo = () => {
|
renderTruncatedInfo = () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user