Commit 8dade803 authored by Simon Knox's avatar Simon Knox

resolve conflicts

parent a63c9e94
...@@ -10,14 +10,11 @@ export default { ...@@ -10,14 +10,11 @@ export default {
text: { text: {
type: String, type: String,
required: false, required: false,
<<<<<<< HEAD
=======
}, },
hideFooter: { hideFooter: {
type: Boolean, type: Boolean,
required: false, required: false,
default: false, default: false,
>>>>>>> e8a46294c0... apply changes for JS and CSS from gitlab-ee!2912
}, },
kind: { kind: {
type: String, type: String,
...@@ -107,46 +104,24 @@ export default { ...@@ -107,46 +104,24 @@ export default {
<p>{{this.text}}</p> <p>{{this.text}}</p>
</slot> </slot>
</div> </div>
<slot name="footer"> <div class="modal-footer" v-if="!hideFooter">
<div class="modal-footer" v-if="!hideFooter"> <button
<button type="button"
type="button" class="btn pull-left"
class="btn btn-default pull-left" :class="btnCancelKindClass"
@click="close" @click="close">
> {{ closeButtonLabel }}
Cancel </button>
</button> <button
<button type="button"
type="button" class="btn pull-right"
class="btn pull-right" :disabled="submitDisabled"
:disabled="submitDisabled" :class="btnKindClass"
:class="btnKindClass" @click="emitSubmit(true)">
@click="emitSubmit(true)" {{ primaryButtonLabel }}
> </button>
{{primaryButtonLabel}} </div>
</button>
</div>
</slot>
</div>
<<<<<<< HEAD
<div class="modal-footer">
<button
type="button"
class="btn"
:class="btnCancelKindClass"
@click="close">
{{ closeButtonLabel }}
</button>
<button
type="button"
class="btn"
:class="btnKindClass"
@click="emitSubmit(true)">
{{ primaryButtonLabel }}
</button>
</div> </div>
=======
>>>>>>> e8a46294c0... apply changes for JS and CSS from gitlab-ee!2912
</div> </div>
</div> </div>
<div class="modal-backdrop fade in" /> <div class="modal-backdrop fade in" />
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment