Skip to content

Commit 4a6850a

Browse files
author
Nedyalko Nikolov
committed
Added missing semicolon.
1 parent 80336d2 commit 4a6850a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/core/bindable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export class Bindable extends dependencyObservable.DependencyObservable implemen
8181
super._onPropertyChanged(property, oldValue, newValue);
8282
if (this instanceof viewModule.View) {
8383
if (property.metadata.inheritable && (<viewModule.View>(<any>this))._isInheritedChange() === true) {
84-
return
84+
return;
8585
}
8686
}
8787
var binding = this._bindings[property.name];

0 commit comments

Comments
 (0)