-
-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It appears that ember-light-table is having lot of issues with ember-octane? are there any solutions for this that i should look into? has anyone else had these issues? #724
Comments
You'll need to be on the latest 2.0 beta release, and use |
There are a few issues with Octane, though none should stop you from being able to use the addon providing you're on v2.x as @richard-viney has said. We're actively working on full support for Octane features as we speak so keep in touch! |
am getting below error with Table.create() Assertion Failed: [ember-light-table] columns must be an array if defined", …} |
@surekha199 Perhaps double-check what arguments you're passing to |
import { inject as service } from '@ember/service'; export default Component.extend({ // table: computed('model', function() {
//I tried in the below ways
}); |
@surekha199 the create method expects an object so you need to pass in
|
As @fran-worley mentioned, when using const table = Table.create({
columns: this.get("columns"),
model: this.get("model")
});
this.set("table", table); Also, the |
Thank you @fran-worley and @richard-viney , I tried both the options mentioned in your comments but I still see the same issue |
[ember-light-table] table must be an instance of Table
This is the error thats popping up right now
The text was updated successfully, but these errors were encountered: