summaryrefslogtreecommitdiffstats
path: root/src/components/Quote.vue
diff options
context:
space:
mode:
authorMaksim Sukharev <antreesy.web@gmail.com>2023-05-12 16:55:33 +0200
committerMaksim Sukharev <antreesy.web@gmail.com>2023-05-12 18:21:52 +0200
commit1ffd8e58910e048a07fabc123834cb1d5b7ed075 (patch)
treeef3aefa60e42d44619e96f06dd578a8dcbcd5284 /src/components/Quote.vue
parent5ae4c8207f03887ecfd6fec5f6510a1d66689888 (diff)
shorten components names
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
Diffstat (limited to 'src/components/Quote.vue')
-rw-r--r--src/components/Quote.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/Quote.vue b/src/components/Quote.vue
index 9338fe10a..988be27cb 100644
--- a/src/components/Quote.vue
+++ b/src/components/Quote.vue
@@ -20,7 +20,7 @@
-->
<docs>
-This component is intended to be used both in `NewMessageForm` and `Message`
+This component is intended to be used both in `NewMessage` and `Message`
components.
</docs>
@@ -47,7 +47,7 @@ components.
<p>{{ shortenedQuoteMessage }}</p>
</blockquote>
</div>
- <div v-if="isNewMessageFormQuote" class="quote__main__right">
+ <div v-if="isNewMessageQuote" class="quote__main__right">
<NcButton type="tertiary"
:aria-label="cancelQuoteLabel"
@click="handleAbortReply">
@@ -125,10 +125,10 @@ export default {
default: '',
},
/**
- * If the quote component is used in the `NewMessageForm` component we display
+ * If the quote component is used in the `NewMessage` component we display
* the remove button.
*/
- isNewMessageFormQuote: {
+ isNewMessageQuote: {
type: Boolean,
default: false,
},