29a388ad27
no issue - fixed template reference - updated template to match upstream's use of render-modifiers - removed silencing of `isVisible` deprecation Co-authored-by: Renovate Bot <bot@renovateapp.com>
12 lines
502 B
JavaScript
12 lines
502 B
JavaScript
self.deprecationWorkflow = self.deprecationWorkflow || {};
|
|
self.deprecationWorkflow.config = {
|
|
workflow: [
|
|
// remove once ember-drag-drop removes usage of Component#sendAction
|
|
// https://github.com/mharris717/ember-drag-drop/issues/155
|
|
{handler: 'silence', matchId: 'ember-component.send-action'},
|
|
|
|
// remove once liquid-fire and liquid-wormhole remove uses of `this.$()`
|
|
{handler: 'silence', matchId: 'ember-views.curly-components.jquery-element'}
|
|
]
|
|
};
|