summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Schatz <jschatz@gitlab.com>2018-01-22 17:13:13 -0500
committerJacob Schatz <jschatz@gitlab.com>2018-01-22 17:13:13 -0500
commitf1daf2e60516635df6c825843aa4d52c8578936c (patch)
tree98fd3be23816835e37681c48b63ef0b11db4221f
parent4f58eedaa13c0c9079c142c577f0fcc2b57ffff6 (diff)
downloadgitlab-ce-f1daf2e60516635df6c825843aa4d52c8578936c.tar.gz
resolve repo_commit_section.vue
-rw-r--r--app/assets/javascripts/ide/components/repo_commit_section.vue40
1 files changed, 1 insertions, 39 deletions
diff --git a/app/assets/javascripts/ide/components/repo_commit_section.vue b/app/assets/javascripts/ide/components/repo_commit_section.vue
index 555cd85d610..932fa60e50d 100644
--- a/app/assets/javascripts/ide/components/repo_commit_section.vue
+++ b/app/assets/javascripts/ide/components/repo_commit_section.vue
@@ -146,6 +146,7 @@ export default {
type="submit"
:disabled="commitButtonDisabled"
class="btn btn-default btn-sm append-right-10 prepend-left-10"
+ :class="{ disabled: submitCommitsLoading }"
>
<i
v-if="submitCommitsLoading"
@@ -161,46 +162,7 @@ export default {
>
{{ commitMessageCount }}
</div>
-<<<<<<< HEAD
</div>
</form>
</div>
-=======
- <div class="multi-file-commit-fieldset">
- <label
- v-tooltip
- title="Create a new merge request with these changes"
- data-container="body"
- data-placement="top"
- >
- <input
- type="checkbox"
- v-model="startNewMR"
- />
- Merge Request
- </label>
- <button
- type="submit"
- :disabled="commitButtonDisabled"
- class="btn btn-default btn-sm append-right-10 prepend-left-10"
- :class="{ disabled: submitCommitsLoading }"
- >
- <i
- v-if="submitCommitsLoading"
- class="js-commit-loading-icon fa fa-spinner fa-spin"
- aria-hidden="true"
- aria-label="loading"
- >
- </i>
- Commit
- </button>
- <div
- class="multi-file-commit-message-count"
- >
- {{ commitMessageCount }}
- </div>
- </div>
- </form>
- </div>
->>>>>>> 218136ac405... Merge branch 'tz-fix-ide-bugs' into 'master'
</template>