Update 0BDFDB.plugin.js

This commit is contained in:
Mirco Wittrien 2024-06-30 20:48:54 +02:00
parent 1aedd82d9c
commit 27e474451a
1 changed files with 0 additions and 1 deletions

View File

@ -7596,7 +7596,6 @@ module.exports = (_ => {
let items = (BDFDB.ArrayUtils.is(this.props.items) ? this.props.items : [{}]).filter(n => n);
let selectedItem = this.props.selectedItem || (items[0] || {}).value;
let renderItem = typeof this.props.renderItem == "function" ? this.props.renderItem : (data => data.label || data.value);
console.log(this);
return BDFDB.ReactUtils.createElement(Internal.NativeSubComponents.TabBar, BDFDB.ObjectUtils.exclude(Object.assign({}, this.props, {
selectedItem: selectedItem,
onItemSelect: this.handleItemSelect.bind(this),