Ember-inspector: [v3.5] No longer detects my ember-app

Created on 28 Jan 2019  路  9Comments  路  Source: emberjs/ember-inspector

The inspector stopped detecting my app as an Ember App since last update (v3.5).
First time this has happened in years, any way I can debug this?
I have the Deprecations were detected, see the Ember Inspector deprecations tab for more details. message in the console, but the inspector tab says: Ember application not detected!

@rwjblue pointed me to this pull where there are some comments that might be related to this issue in the end: https://github.com/emberjs/ember-inspector/pull/898

Let me know if I can do anything to help debug this!

Edit: forgot to say I'm using latest stable releases of ember-cli and ember-source.

bug

Most helpful comment

We are aware of this issue and working on a fix.

All 9 comments

Also having issues with version 3.5.0 of the inspector: it stopped detecting my ember app. I have no warnings whatsoever in Chrome. In Firefox it says Ember Inspector Active, but it doesn't detect the app.

Ember version: 2.18.2

possibly related to #926 . Do either of you have a public link to the app? Also, do you have prototype extensions disabled?

@efx I can send you a link in Discord.

EmberENV: {
  EXTEND_PROTOTYPES: {
    Date: false,
    Function: false,
    String: false,
  },
},

Per some investigation and discussion, we can rule out #926 as being related. So next step is to bisect to find what part of the recent changes caused this break per Robert's guidance here: https://github.com/emberjs/ember-inspector/pull/898/files#r251179496

Having the same issue. Looking at two ember apps Ember v3.5 and v3.6. Chrome and firefox: neither extensions work. Was working until about 3pm EST

Same issue here with ember 2.18.

+1 on Ember 3.4

We are aware of this issue and working on a fix.

@rwjblue and @rwwagner90 found a quick fix while this is not properly fixed. Just add a name property to to your app/app.js:

// app/app.js
const App = Application.extend({
  name: 'anything-here', // add this property with any name
  ...
Was this page helpful?
0 / 5 - 0 ratings

Related issues

danilovaz picture danilovaz  路  8Comments

ansmonjol picture ansmonjol  路  3Comments

stevehanson picture stevehanson  路  9Comments

izackhub picture izackhub  路  6Comments

camskene picture camskene  路  6Comments