Skip to content

Commit

Permalink
Fix #9 removing conversation
Browse files Browse the repository at this point in the history
  • Loading branch information
akazorg committed Oct 31, 2018
1 parent 60ff0da commit b0f43c4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
- Added make SCSS + JS publishable, and updated docs on mobile, make the delete icon in messages always visible.
- Added instructions how to customize Mercurius (Views, SCSS, JS).
- Fix style, on mobile, make the delete icon in messages always visible.
- Fix #7 conversations date.
- Fix #9 removing active conversation.


## [0.0.7] - 2018-10-20
Expand Down
2 changes: 1 addition & 1 deletion publishable/public/js/mercurius.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion resources/js/messages/Messages.vue
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export default {
watch: {
conversation: function (newV, oldV) {
if (newV === oldV) return;
(!newV) ? this.loadMessagesReset() : this.onLoadMessages(newV)
_.isEmpty(newV) ? this.loadMessagesReset() : this.onLoadMessages(newV);
},
},
Expand Down

0 comments on commit b0f43c4

Please sign in to comment.