Skip to content

Commit

Permalink
fix: merge with master and fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
munkhorgil committed Mar 11, 2020
1 parent a1d2f89 commit 01eb251
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,11 @@
[ISSUE](https://github.com/erxes/erxes/issues/ISSUE)

### Context

Your context here. Additionally, any screenshots. Delete this line.


// Delete the below section once completed
### PR Checklist
- [ ] Description is clearly stated under Context section
- [ ] Screenshots and the additional verifications are attached
7 changes: 7 additions & 0 deletions ui/CHANGELOG.md
@@ -1,3 +1,10 @@
## [0.12.1](https://github.com/erxes/erxes/compare/0.12.0...0.12.1) (2020-03-09)


### Bug Fixes

* **integrations:** invalid check in conversations gmail kind ([0e8cacd](https://github.com/erxes/erxes/commit/0e8cacd))

# [0.12.0](https://github.com/erxes/erxes/compare/0.11.2...0.12.0) (2020-01-08)


Expand Down
Expand Up @@ -63,7 +63,7 @@ class Conversation extends React.Component<Props, {}> {
const messages = (conversationMessages || []).slice();
const firstMessage = messages[0];

if (kind.includes('nylas' || kind === 'gmail')) {
if (kind.includes('nylas') || kind === 'gmail') {
return (
<MailConversation
conversation={conversation}
Expand Down

0 comments on commit 01eb251

Please sign in to comment.