BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
cebad0fb
Commit
cebad0fb
authored
Sep 30, 2016
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not show Diff view switcher if all files are can be only resolved with an editor
parent
197ac5eb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
merge_conflict_store.js.es6
...s/javascripts/merge_conflicts/merge_conflict_store.js.es6
+12
-0
merge_conflicts_bundle.js.es6
...javascripts/merge_conflicts/merge_conflicts_bundle.js.es6
+2
-1
_commit_stats.html.haml
...projects/merge_requests/conflicts/_commit_stats.html.haml
+1
-1
No files found.
app/assets/javascripts/merge_conflicts/merge_conflict_store.js.es6
View file @
cebad0fb
...
@@ -425,6 +425,18 @@
...
@@ -425,6 +425,18 @@
setSubmitState(state) {
setSubmitState(state) {
this.state.isSubmitting = state;
this.state.isSubmitting = state;
},
fileTextTypePresent() {
let found = false;
this.state.conflictsData.files.find((f) => {
if (f.type === CONFLICT_TYPES.TEXT) {
return found = true;
}
});
return found;
}
}
};
};
...
...
app/assets/javascripts/merge_conflicts/merge_conflicts_bundle.js.es6
View file @
cebad0fb
...
@@ -21,7 +21,8 @@ $(() => {
...
@@ -21,7 +21,8 @@ $(() => {
computed: {
computed: {
conflictsCountText() { return mergeConflictsStore.getConflictsCountText() },
conflictsCountText() { return mergeConflictsStore.getConflictsCountText() },
readyToCommit() { return mergeConflictsStore.isReadyToCommit() },
readyToCommit() { return mergeConflictsStore.isReadyToCommit() },
commitButtonText() { return mergeConflictsStore.getCommitButtonText() }
commitButtonText() { return mergeConflictsStore.getCommitButtonText() },
showDiffViewTypeSwitcher() { return mergeConflictsStore.fileTextTypePresent() }
},
},
created() {
created() {
mergeConflictsService
mergeConflictsService
...
...
app/views/projects/merge_requests/conflicts/_commit_stats.html.haml
View file @
cebad0fb
.content-block.oneline-block.files-changed
{
"v-if"
=>
"!isLoading && !hasError"
}
.content-block.oneline-block.files-changed
{
"v-if"
=>
"!isLoading && !hasError"
}
.inline-parallel-buttons
.inline-parallel-buttons
{
"v-if"
=>
"showDiffViewTypeSwitcher"
}
.btn-group
.btn-group
%a
.btn
{
|
%a
.btn
{
|
":class"
=>
"{'active': !isParallel}"
,
|
":class"
=>
"{'active': !isParallel}"
,
|
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment