Brandyn Bennett
Brandyn Bennett
## Version Latest Master starting at #126 ## Test Case ## Steps to reproduce ## Expected Behavior From the Docs and existing behavior the `buildMessage` function should have a signature...
When passing in the `rowspan` property like this: ```hbs {{#each @columns as |column|}} {{component (concat 'light-table/columns/' column.type) column table=@table extra=@extra rowspan=1 sortIcons=@sortIcons}} {{/each}} ``` An error gets thrown in Ember...
Given a child class with an `initialize` transition ```js class Pagination { page = Number; itemsPerPage = Number; initialize() { let pagination = this; if (!pagination.page.state) { pagination = this.page.set(1);...
When working with JetStream Push Consumers there's a type of header message that gets published that has headers like this: `NATS/1.0 100 Idle Heartbeat\r\nNats-Last-Consumer: 2\r\nNats-Last-Stream: 2\r\n`. These messages result in...
It would be awesome if this addon supported Ember without jQuery. `$.ajaxPrefilter` is preventing that in the initializer
Right now it's very confusing when to pass an unmasked value or a masked value to the component. I'm thinking it would be better if users of the component were...
The code that fills in the value is not scoped to a specific power-select element Problem is on this line: https://github.com/cibernox/ember-power-select/blob/master/addon-test-support/helpers.js#L176 ``` await fillIn('.ember-power-select-search-input', value); ```