mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
Merge pull request #673 from NativeScript/fix
TabViewItem.title and SegmentedBarItem.title are now empty string by …
This commit is contained in:
@ -11,7 +11,7 @@ export module knownCollections {
|
||||
}
|
||||
|
||||
export class SegmentedBarItem extends bindable.Bindable implements definition.SegmentedBarItem {
|
||||
private _title: string;
|
||||
private _title: string = "";
|
||||
public _parent: SegmentedBar;
|
||||
|
||||
get title(): string {
|
||||
|
@ -9,7 +9,7 @@ import bindable = require("ui/core/bindable");
|
||||
export var traceCategory = "TabView";
|
||||
|
||||
export class TabViewItem extends bindable.Bindable implements definition.TabViewItem {
|
||||
private _title: string;
|
||||
private _title: string = "";
|
||||
private _view: view.View;
|
||||
private _iconSource: string;
|
||||
|
||||
|
Reference in New Issue
Block a user