react-native-table-component
Advanced tools
Comparing version 1.1.2 to 1.1.3
@@ -17,3 +17,3 @@ import React, { Component } from 'react'; | ||
let borderWidth,borderColor; | ||
if (this.props.borderStyle && this.props.borderStyle.borderWidth) { | ||
if (this.props.borderStyle && this.props.borderStyle.borderWidth !== undefined) { | ||
borderWidth = this.props.borderStyle.borderWidth; | ||
@@ -20,0 +20,0 @@ } else { |
@@ -24,3 +24,3 @@ import React, { Component } from 'react'; | ||
let borderWidth, borderColor; | ||
if (this.props.borderStyle && this.props.borderStyle.borderWidth) { | ||
if (this.props.borderStyle && this.props.borderStyle.borderWidth !== undefined) { | ||
borderWidth = this.props.borderStyle.borderWidth; | ||
@@ -27,0 +27,0 @@ } else { |
{ | ||
"name": "react-native-table-component", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "Build table for react native.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18332