aboutsummaryrefslogtreecommitdiff
path: root/diplomacy/web/src/gui/components/tabs.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'diplomacy/web/src/gui/components/tabs.jsx')
-rw-r--r--diplomacy/web/src/gui/components/tabs.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/diplomacy/web/src/gui/components/tabs.jsx b/diplomacy/web/src/gui/components/tabs.jsx
index a3f6b9b..d0112f2 100644
--- a/diplomacy/web/src/gui/components/tabs.jsx
+++ b/diplomacy/web/src/gui/components/tabs.jsx
@@ -46,7 +46,7 @@ export class Tabs extends React.Component {
<nav className={'tabs-bar nav nav-tabs justify-content-center mb-3'}>
{this.props.menu.map((tabName, index) => this.generateTabAction(
this.props.titles[index], tabName, active === tabName, this.props.onChange,
- (this.props.highlights.hasOwnProperty(tabName) && this.props.highlights[tabName]) || null
+ (Object.prototype.hasOwnProperty.call(this.props.highlights, tabName) && this.props.highlights[tabName]) || null
))}
</nav>
{this.props.children}