Seva Baskin

Results 12 issues of Seva Baskin

I'm doing query param validation on page load in the setup hook: ```js setup({ queryParams }) { if (this.isPastDate(queryParams.date)) { this.set('date', null); } this.fetchData(queryParams); } ``` While the `'date'` controller...

I recently switched our config from transactional to truncation strategy as shown in the Rspec + Capybara example in Readme. However, this seems to affect the data created in the...

It seems the current architecture of `userTransition` doesn't support multiple animated elements within a controller. Was trying to implement [Tailwind UI's modal component](https://tailwindui.com/components/application-ui/overlays/modals), which animates the backdrop separately from the...

There are a number of internal files in the `dist` directory that are currently publicly exposed by the fastboot server (e.g. `dist/package.json`, `dist/node_modules/*`, etc). Don't think there are any security...

Importing and using `calendarSelect` in integration with Ember 2.16 throws `TypeError: (0 , _testHelpers.find) is not a function` here: https://github.com/cibernox/ember-power-calendar/blob/20dd2e13cc841b316d52620364143c6df4e293d9/addon-test-support/index.js#L7 Upon further inspection, looks like find is undefined here for...

I have a route where model is bound to a query param (in my case a `category_id`). As I change the underlying category model within this route, elsewhere fails to...

I've managed to successfully create an Elastic Beanstalk app following the documentation. The ember app itself is zipped and deployed to S3 via `ember-cli-deploy-elastic-beanstalk`, which the eb server manages to...