adopted-ember-addons / ember-notify

Notification messages for your Ember.js app
MIT License
264 stars 100 forks source link

use create rather then property when adding multiple containers #157

Closed gvocale closed 4 years ago

gvocale commented 4 years ago

Using property would throw the error:

Uncaught Error: Assertion Failed: EmberObject.create no longer supports defining computed properties. Define computed properties using extend() or reopen() before calling create().

While instead using create() seems to fix the issue.

btecu commented 4 years ago

Thanks @gvocale!