File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -198,11 +198,9 @@ export default {
198198 m .data .text = message .data .text ;
199199 },
200200 removeMessage (message ){
201- if (confirm (' Delete?' )){
202- const m = this .messageList .find (m => m .id === message .id );
203- m .type = ' system' ;
204- m .data .text = ' This message has been removed' ;
205- }
201+ const m = this .messageList .find (m => m .id === message .id );
202+ m .type = ' system' ;
203+ m .data .text = ' This message has been removed' ;
206204 },
207205 like (id ){
208206 const m = this .messageList .findIndex (m => m .id === id);
Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ a.chatLink {
131131 color : inherit !important ;
132132}
133133.message-deletion-confirmation {
134- padding : 0px 5px ;
134+ padding : 0px 10px ;
135+
135136}
136137 </style >
You can’t perform that action at this time.
0 commit comments