Skip to content

Commit

Permalink
Fix in latest ember
Browse files Browse the repository at this point in the history
  • Loading branch information
cibernox committed Jun 18, 2021
1 parent bdeec26 commit 7146c3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/modifiers/did-update.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ import { gte } from 'ember-compatibility-helpers';
*/
export default setModifierManager(
() => ({
capabilities: capabilities(gte('3.22.0') ? '3.22' : '3.13', { disableAutoTracking: true }),
capabilities: gte('3.22.0') ? capabilities('3.22', { disableAutoTracking: false }) : capabilities('3.13', { disableAutoTracking: true }),

createModifier() {
return { element: null };
Expand Down

0 comments on commit 7146c3a

Please sign in to comment.