vue-wiguet-chatweb 0.1.29 → 0.1.30
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
package/src/components/Chat.vue
CHANGED
@@ -294,7 +294,7 @@ function createMessage(message: string, codigoTipoMensaje?: TypeMessageTypeCodes
|
|
294
294
|
createdAt: new Date().toISOString(),
|
295
295
|
updatedAt: new Date().toISOString(),
|
296
296
|
file: inputFiles.value?.[0],
|
297
|
-
urlFile: urlFiles.value?.[0]
|
297
|
+
urlFile: urlFiles.value?.[0],
|
298
298
|
messageType,
|
299
299
|
sender: {
|
300
300
|
nombreCompleto: props.user.nombreCompleto,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<template>
|
2
2
|
<Teleport v-if="isReadyTeleport" to="#dialogs">
|
3
|
-
<div v-if="props.modelValue" class="dialog-overlay"
|
3
|
+
<div v-if="props.modelValue" class="dialog-overlay">
|
4
4
|
<div class="dialog-content" @click.stop>
|
5
5
|
<div class="header-widget">
|
6
6
|
<h4 class="title-chat">{{ title }}</h4>
|