+
@@ -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,
},
diff --git a/src/components/RightSidebar/BreakoutRooms/BreakoutRoomItem.vue b/src/components/RightSidebar/BreakoutRooms/BreakoutRoomItem.vue
index d88291283a9..67b943f8c09 100644
--- a/src/components/RightSidebar/BreakoutRooms/BreakoutRoomItem.vue
+++ b/src/components/RightSidebar/BreakoutRooms/BreakoutRoomItem.vue
@@ -54,7 +54,7 @@
{{ t('spreed', 'Dismiss request for assistance') }}
-
+
@@ -65,7 +65,7 @@
+ @close="closeSendMessageDialog" />
@@ -207,11 +207,11 @@ export default {
},
methods: {
- openSendMessageForm() {
+ openSendMessageDialog() {
this.isDialogOpened = true
},
- closeSendMessageForm() {
+ closeSendMessageDialog() {
this.isDialogOpened = false
},
diff --git a/src/services/filesSharingServices.js b/src/services/filesSharingServices.js
index 77cd94f20a0..62777d425b0 100644
--- a/src/services/filesSharingServices.js
+++ b/src/services/filesSharingServices.js
@@ -67,7 +67,7 @@ const getFileTemplates = async () => {
* @param {string} templateType The template type e.g 'user'
* @return { object } the file object
*/
-const createTextFile = async function(filePath, templatePath, templateType) {
+const createNewFile = async function(filePath, templatePath, templateType) {
return await axios.post(generateOcsUrl('apps/files/api/v1/templates/create'), {
filePath,
templatePath,
@@ -78,5 +78,5 @@ const createTextFile = async function(filePath, templatePath, templateType) {
export {
shareFile,
getFileTemplates,
- createTextFile,
+ createNewFile,
}