From cadd71015baf2ebfcf21a37b9945c74d8a52f712 Mon Sep 17 00:00:00 2001 From: Maz Ameli <maz@metabase.com> Date: Thu, 22 Jul 2021 07:58:53 -0700 Subject: [PATCH] fix Radio component with new syntax (#17103) --- .../metabase-enterprise/audit_app/components/AuditContent.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/enterprise/frontend/src/metabase-enterprise/audit_app/components/AuditContent.jsx b/enterprise/frontend/src/metabase-enterprise/audit_app/components/AuditContent.jsx index 776fad5a170..d7beac5ec3a 100644 --- a/enterprise/frontend/src/metabase-enterprise/audit_app/components/AuditContent.jsx +++ b/enterprise/frontend/src/metabase-enterprise/audit_app/components/AuditContent.jsx @@ -17,9 +17,9 @@ export default class AuditContent extends React.Component { {tabs && ( <div className="border-bottom px4 mt1"> <Radio - underlined + variant="underlined" value={this.props.router.location.pathname} - options={tabs.filter(tab => tab.component)} // hide tabs that aren't implemented + options={tabs.filter(tab => tab.component)} // hide tabs that are not implemented optionValueFn={tab => `${pagePath}/${tab.path}`} optionNameFn={tab => tab.title} optionKeyFn={tab => tab.path} -- GitLab