port changes
This commit is contained in:
parent
9d5d5d8648
commit
8403b38940
3 changed files with 3 additions and 6 deletions
|
@ -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() {
|
||||
|
|
|
@ -242,10 +242,6 @@
|
|||
&:not(:last-child) {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
&.hide {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue