Sebastian Helbig
Sebastian Helbig
Same error with cordova-android-6.4.0 Code is ``` if (window.cordova.plugins && window.cordova.plugins.notification && window.cordova.plugins.notification.badge ) { window.cordova.plugins.notification.badge.requestPermission(); } ``` I solved it by using only this instead: ``` if (window.cordova.plugins &&...
Does the solution https://github.com/DockYard/ember-changeset-validations/issues/94#issuecomment-244089956 still work? It seems computed properties aren't merged by `Ember.merge` in https://github.com/DockYard/ember-changeset-validations/blob/c638e81a537c5e9fb427227cc0e35852d01a6919/addon/utils/with-defaults.js#L13-L15
Anyone working on this?
Version 3.5.4 still same problem: https://github.com/offirgolan/ember-cp-validations/issues/596#issuecomment-407068990
Nothing needed in `ember-cli-build.js`. In `addon.scss` just add: ``` @import 'node_modules/ember-power-select/app/styles/ember-power-select/variables'; @import 'node_modules/ember-basic-dropdown/app/styles/ember-basic-dropdown'; @import 'node_modules/ember-power-select/app/styles/ember-power-select/base'; ``` Depending on your folder structure you may need to change to `../node_modules/…` or something...
This bug is still present. Any news here or a known workaround?
I also wish you find the time 😄
Anyone found a solution for this? I am experiencing the same problem 😞
I solved the duplicate id issue by extending `swiper-slide`component and setting `tagName: ''`.
@Matt-Jensen app/components/swiper-slider.js ``` import SwiperSlide from 'ember-cli-swiper/components/swiper-slide'; export default SwiperSlide.extend({ tagName: '' }); ``` app/templates/components/swiper-slide.hbs ``` {{yield}} ```