We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8e31f3 commit d3ebd42Copy full SHA for d3ebd42
src/directive.js
@@ -149,11 +149,13 @@ DirProto.refresh = function (value) {
149
* Actually invoking the _update from the directive's definition
150
*/
151
DirProto.apply = function (value) {
152
- this._update(
153
- this.filters
154
- ? this.applyFilters(value)
155
- : value
156
- )
+ if (this._update) {
+ this._update(
+ this.filters
+ ? this.applyFilters(value)
+ : value
157
+ )
158
+ }
159
}
160
161
/**
0 commit comments