erichaus

Results 77 comments of 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 ![image](https://user-images.githubusercontent.com/230757/132266639-4110c02a-8d2c-4100-8a60-eb93bc4336f5.png) 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: ![image](https://user-images.githubusercontent.com/230757/132310357-46f751c2-8e5c-4995-a8e1-de19336cd991.png) running `ember dependency lint` ![image](https://user-images.githubusercontent.com/230757/132310822-c2531d2a-cedd-4cd5-992d-88312d293458.png) 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...