port changes

This commit is contained in:
Luke Bennett 2018-08-07 15:10:25 +01:00
parent 9d5d5d8648
commit 8403b38940
No known key found for this signature in database
GPG Key ID: A738E9C68D3BF31A
3 changed files with 3 additions and 6 deletions

View File

@ -50,7 +50,7 @@ export default class MirrorRepos {
this.debouncedUpdateUrl = _.debounce(() => this.updateUrl(), 200);
this.$urlInput.on('input', () => this.debouncedUpdateUrl());
this.$protectedBranchesInput.on('change', () => this.updateProtectedBranches());
this.$table.on('click', '.js-delete-mirror', this.deleteMirror.bind(this));
this.$table.on('click', '.js-delete-mirror', event => this.deleteMirror(event));
}
togglePassword() {

View File

@ -242,10 +242,6 @@
&:not(:last-child) {
margin-right: 5px;
}
&.hide {
display: none;
}
}
}

View File

@ -3,7 +3,8 @@
%li
= _('The repository must be accessible over <code>http://</code>,
<code>https://</code>, <code>ssh://</code> and <code>git://</code>.').html_safe
%li= _('The update action will time out after 10 minutes. For big repositories, use a clone/push combination.')
%li= _('Include the username in the URL if required: <code>https://username@gitlab.company.com/group/project.git</code>.').html_safe
%li= _('The update action will time out after 15 minutes. For big repositories, use a clone/push combination.')
%li= _('The Git LFS objects will <strong>not</strong> be synced.').html_safe
%li
= _('This user will be the author of all events in the activity feed that are the result of an update,