Skip to content

Commit

Permalink
fix: fix markdown not being applied for a phone call description (mon…
Browse files Browse the repository at this point in the history
  • Loading branch information
djaiss authored Feb 1, 2020
1 parent 0b9cff6 commit ad11e47
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

### Fixes:

* Markdown is now properly applied for a phone call description
* Fix contacts list UX with 2 tabs opened
* Fix activity mock data seeder

Expand Down
2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"/js/manifest.js": "/js/manifest.js?id=7db827d654313dce4250",
"/js/vendor.js": "/js/vendor.js?id=991c16db562427065447",
"/js/app.js": "/js/app.js?id=4f5f7df5a25cdf5c0f7a",
"/js/app.js": "/js/app.js?id=d6294e5fc641a0a79125",
"/css/app-ltr.css": "/css/app-ltr.css?id=d7af037d2c663a04542f",
"/css/app-rtl.css": "/css/app-rtl.css?id=561a37d456b9d3e90c02",
"/css/stripe.css": "/css/stripe.css?id=76c70a7b11ae5f38a725",
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/people/calls/PhoneCallList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
<span v-if="!call.content">
{{ $t('people.call_blank_desc', { name: call.contact.first_name }) }}
</span>
<span v-if="call.content" dir="auto" v-html="compiledMarkdown(call.content)"></span>
<span v-if="call.content" dir="auto" class="markdown" v-html="compiledMarkdown(call.content)"></span>
</div>

<!-- INLINE UPDATE DIV -->
Expand Down

0 comments on commit ad11e47

Please sign in to comment.