1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00

Silenced Component#sendAction deprecation

no issue

- `ember-drag-drop` still triggers this and spams the console when re-ordering tags in the tags input
This commit is contained in:
Kevin Ansfield 2020-01-14 15:39:31 +00:00
parent dd66c0f57c
commit 314c8c6ff3

View file

@ -1,9 +1,14 @@
self.deprecationWorkflow = self.deprecationWorkflow || {};
self.deprecationWorkflow.config = {
workflow: [
// revert one liquid-fire and liquid-wormhole remove uses of `this.$()`
// 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'},
// revert once ember-infinity removes usage of `isVisible`
// remove once ember-infinity removes usage of `isVisible`
// https://github.com/ember-infinity/ember-infinity/pull/399
{handler: 'silence', matchId: 'ember-component.is-visible'}
]