mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-10 23:45:44 +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 = () => {
|
||||
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 = () => {
|
||||
|
||||
Reference in New Issue
Block a user