mirror of
https://github.com/kuaifan/dootask.git
synced 2026-08-01 19:05:55 +00:00
no message
This commit is contained in:
parent
450cc19477
commit
ea2ae8a880
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "DooTask",
|
||||
"version": "0.3.27",
|
||||
"version": "0.3.28",
|
||||
"description": "DooTask is task management system.",
|
||||
"scripts": {
|
||||
"start": "./cmd dev",
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -71,7 +71,7 @@
|
||||
@on-keydown="chatKeydown"
|
||||
@on-input-paste="pasteDrag"
|
||||
:placeholder="$L('输入消息...')" />
|
||||
<div v-if="msgText" class="dialog-send" @click="sendMsg">
|
||||
<div v-if="msgText != ''" class="dialog-send" @click="sendMsg">
|
||||
<Icon type="md-send" />
|
||||
</div>
|
||||
<DialogUpload
|
||||
@ -199,7 +199,7 @@ export default {
|
||||
this.msgText = text;
|
||||
this.$refs.input.focus();
|
||||
}
|
||||
if (!this.msgText) {
|
||||
if (this.msgText == '') {
|
||||
return;
|
||||
}
|
||||
let tempId = $A.randomString(16);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user