Abhishek
Abhishek
**Description** If the `item` inside `{{#item.handle}}` or `{{#group.item}}` is an ember component, this addon has some serious issues. I'll outline a few of them - 1. Each item can only...
**Describe the bug** If the `item` inside `{{#item.handle}}` or `{{#group.item}}` is an ember component with buttons, button clicks dont work on mobile devices. **To Reproduce** Steps to reproduce the behavior:...
The default search action is essentially a button in the navbar that opens a modal containing the actual search bar component. I want to remove the button and directly place...
apicache uses the [url](https://github.com/kwhitley/apicache/blob/f27cb2b30719e8eb35ef98c6c019dd1d5ec96732/src/apicache.js#L614) as the key for caching responses. So even when the express app is not using [strict routing](https://expressjs.com/en/api.html#express.router) (`/foo` and `/foo/` are equivalent) you can end up...
```bash # Env var TEST_ENV_VAR = 5 ``` ```bash # root.conf { a : { include "foo.conf" } } ``` ```bash # foo.conf { y : ${TEST_ENV_VAR} } ``` In...
Fix tested. > rof@bionic_daafeb4e-dec9-40a4-b32f-1de67b76fed5_c9fd48beedd3:~$ wget -nc --output-document "${CACHED_DOWNLOAD}" https://download.elasticsearch.org/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/2.4.6/elasticsearch-2.4.6.tar.gz File ‘/home/rof/cache/elasticsearch-2.4.6.tar.gz’ already there; not retrieving. > rof@bionic_daafeb4e-dec9-40a4-b32f-1de67b76fed5_c9fd48beedd3:~$ wget -nc --continue --output-document "${CACHED_DOWNLOAD}" https://download.elasticsearch.org/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/2.4.6/elasticsearch-2.4.6.tar.gz File ‘/home/rof/cache/elasticsearch-2.4.6.tar.gz’ already there; not retrieving. >...
Is https://github.com/adopted-ember-addons/ember-cli-sass#addon-usage still valid? I'm on `10.0.1` and have it working without adding the `included` bit.
Given ```javascript // app/models/person.js export default Model.extend({ name: attr('string'), addresses : fragmentArray('address'), }); // app/models/address.js export default Fragment.extend({ street : attr('string'), country : attr('string') }); ``` If `person` looks like...
I am trying to use this addon with ``` "ember-cli": "2.6.2", "ember-data": "2.8.1", ``` As per the the [docs](https://github.com/lytics/ember-data-model-fragments#compatibility) I used version `2.3.3` of this addon but keep hitting >...