erichaus
erichaus
@Turbo87 @rwjblue travis fail possibly due to node version needing bump? I see it's using node 6 in .travis.yml https://github.com/eslint/eslint/issues/11944#issuecomment-508330619
https://github.com/elastic/elasticsearch-py/pull/1230 looks like it's all merged?
also getting failure after updating to `3.27.0`, any suggestions? ``` TypeError: Cannot read properties of undefined (reading 'args') at initializer (https://0.0.0.0:7357/assets/vendor.js:99689:19) at getter (webpack://__ember_auto_import__/./node_modules/@glimmer/validator/dist/modules/es2017/lib/tracking.js?:88:15) at BasicDropdown.get [as isOpen] (webpack://__ember_auto_import__/./node_modules/@glimmer/tracking/dist/modules/es2017/src/tracked.js?:107:14) at...
@juanazam  I didn't investigate further but I'll try again tonight or tomorrow.. all I know is my test suite had multiple failures with same message above after bumping to...
@BryanCrotaz ok will check, loaded the app and saw this:  running `ember dependency lint`  is that mismatch related possibly? ### edit fwiw I tried updating to glimmer component...
@timmorey ok thank you I will try that!
Just found myself here while googling information on customizing scrollbars for a cleaner UI element for a new social web-app. Although sites like slack, twitch, and discord all seem to...
@napafundi as a workaround you can do: ``` export default class IndexRoute extends Route { @service fastboot; @service session; beforeModel(transition) { if (!this.fastboot.isFastBoot) { this.session.requireAuthentication(transition, 'login'); } } } ```...
that works although it should also be clear from the dummy app
@lolmaus did you ever come up with a good solution here? Trying to write acceptance test for a client-side pagination feature and basically can't get it to work due to...