Christian

Results 17 issues of Christian
trafficstars

I think #95 introduced a regression where checkbox elements don't use a span wrapped label anymore. https://github.com/adfinis-sygroup/ember-validated-form/pull/95/files#diff-3fdbc85ba77b90bb068fe83da64dee87L85 removed wrapping the checkbox label in a span by introducing a `validated-label` that...

Right now setDirty always sets the `dirty` property to `true`. We could make it more clever to only `dirty` the form if the [changeset `isDirty`](https://github.com/poteto/ember-changeset#isdirty) is `true`. This also helps...

Hi, I noticed the following due to a warning from embroider. `app/not-eq` tries to reexport [`notEq` from `addon/not-equal`](https://github.com/jmurphyau/ember-truth-helpers/blob/master/app/helpers/not-eq.js#L1). `addon/not-equal` only exports [`notEqualHelper`](https://github.com/jmurphyau/ember-truth-helpers/blob/master/addon/helpers/not-equal.js#L3). This means that there's an export happening that...

It seems like ember-pickr has issues when used as data-down, action-up component. ```js onSave(color) { this.set('value', color.toHEXA().toString()); } ``` ```hbs {{color-picker value=value onSave=(action onSave)}} ``` It might be possible to...

Hi, I'm trying to figure out why our tests won't complete in Safari 10. We're getting the usual `Browser disconnected` error. This error happens if `browser_disconnect_timeout` is reached. While looking...

Hi, I wanted to use `waitUntil` and pass an async function as the callback. It looks like this [isn't currently supported](https://github.com/emberjs/ember-test-helpers/blob/27389be9e42b6f1c2c295f8c8d3ba6517f1a80f6/addon-test-support/%40ember/test-helpers/wait-until.ts#L51). Is this something you would be interested in supporting?...

This makes it easier to find the source via npm repositories. # Problem When viewing twemoji-parser via [npm](https://www.npmjs.com/package/twemoji-parser) or [yarn](https://yarnpkg.com/en/package/twemoji-parser), it's hard to find the package source. # Solution I've...