Hide "Add quote" button
This commit is contained in:
parent
e4082177dc
commit
c893dedf36
1 changed files with 2 additions and 1 deletions
|
@ -45,6 +45,7 @@
|
|||
title="Attach image"
|
||||
:disabled="!canAttachFile()"
|
||||
@click="selectAttachment()"
|
||||
@click.middle="quoteInputVisible = !quoteInputVisible"
|
||||
>
|
||||
<img :src="require('@/assets/feather/paperclip.svg')">
|
||||
<input
|
||||
|
@ -56,7 +57,7 @@
|
|||
>
|
||||
</button>
|
||||
<button
|
||||
v-if="canAddQuote()"
|
||||
v-if="canAddQuote() && false"
|
||||
type="button"
|
||||
class="icon"
|
||||
title="Add quote"
|
||||
|
|
Loading…
Reference in a new issue