Ryan Scott

Results 34 comments of Ryan Scott

This is also happening with ember-paper versions after `1.0.0-alpha.19`

- Version of dokku you use: 0.4.13 - Non-core plugins in use: - dokku-postgresql - dokku-wkhtmltopdf - dokku-maintenance - Size of team using dokku: 1 - Primary role of the...

Here's my custom validator: app/validators/json_validator.rb ``` require 'json_schemer' require 'pathname' class JsonValidator < ActiveModel::EachValidator def validate_each(record, attribute, value) schemer = load_schemer return if schemer.valid?(value) schemer.validate(value).each do |error| record.errors[attribute]

I'm facing a similar issue, `parentAttribute` is a string but is like `"Model:"` Very simple reproduction here: https://ember-twiddle.com/a863a3cbd1e43164669f3aebb5cfdad9?openFiles=templates.application.hbs%2C Maybe I'm doing something wrong? Is the intention for `parentAttribute` to equal...

Looks like the mdc selects have been updated, see the 'enhanced' examples: https://material-components.github.io/material-components-web-catalog/#/component/select

Looking awesome! For the tabs you can use the router service and have ``` activeTab: computed('router.currentRouteName', function() { return this.router.currentRouteName.startsWith('component.') ? 'component' : this.router.currentRouteName; }) {{#paper-tabs selected=activeTab onChange=... as |tabs|}}...

> @Subtletree That wouldn't work because we want the tab to be active for _all_ components, not just a specific one. Good point! In that case another option would be...

Good find with the noink! I've looked for a quick solution for this before but never found one. You could just re open the ripple mixin itself too to make...

Just added the above and reduced one test suite from 196 seconds to 154!