Closed Unkrass closed 4 years ago
Please fixed the extension and it is not working @gcollazo
@gcollazo @jasonmit can you merge bench-marc's PR any time soon?
@Unkrass should be fixed in 4.5.0
Fix: https://github.com/gcollazo/ember-cli-showdown/commit/015b255fd62e81fca039f1a8ee09144a6c6803d1
@jasonmit much appreciated
With Ember 3.9 I get the following deprecation warning:
DEPRECATION: The eos@component:markdown-to-html::ember874#extensions computed property was just overriden. This removes the computed property and replaces it with a plain value, and has been deprecated. If you want this behavior, consider defining a setter which does it manually. [deprecation id: computed-property.override] See https://emberjs.com/deprecations/v3.x#toc_computed-property-override for more details.
I believe that it would be enough to remove the computed property, since it simply returns an empty array.
ember-cli-showdown/addon/components/markdown-to-html.js, line 15:
extensions: computed(function() { return []; }),