Aleksei Nagovitsyn

Results 18 comments of Aleksei Nagovitsyn

Maybe, using ember-component-css is the reason (https://github.com/adc-mhaugen/sass-addon/blob/ddad5b2d754c4b3f8b38908f728f059e5f914e53/package.json#L23)?

Just for the additional context, the code below is a real case where I encountered the bug: ```handlebars Toggle perform foo ``` `DropDownMenu` under the hood has `addEventListener('focusout', ...)` to...

@NullVoxPopuli My task already has yield (a modal dialog is opened, and promise waits until it is closed - implementation mostly the same as https://github.com/simplabs/ember-promise-modals) ```js @task({ drop: true })...

Unfortunately, that didn't help.

> So adding await Promise.resolve() to the blur handler, with an isDestroyed check (or use a task to do this for you) is probably the way to go. I can...

```js validator('format', { regex: /^\d+(\.\d{1,2})?$/, value(model, attribute) { const val = model[attribute]; return val && val.toString(); } }) ```

Yeah, I see. To be honest, it still seems odd.., but, yeah, I understand it's by design, and it doesn't make sense to make a lot of changes to the...

Having a similar issue when using `get(response, 'comments.firstObject')`, where `response` is a result of `await fetch -> await response.json()` and `response.comments` is an array. - browser: `get(response, 'comments.firstObject') // ok`...

@burritoIand Check your version of ember-cli-fastboot. If v < 3.0 beta, use `sandboxGlobals` instead. ```js const { URL } = require('url'); module.exports = function(environment) { return { sandboxGlobals: { URL...