From eba893c99b3cb77b9c03266a1412f69c63bb79c0 Mon Sep 17 00:00:00 2001 From: Keith Grant Date: Fri, 21 Feb 2020 11:05:59 -0800 Subject: [PATCH] syntax fix after merge --- awx/ui_next/src/screens/Host/HostList/HostList.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/ui_next/src/screens/Host/HostList/HostList.jsx b/awx/ui_next/src/screens/Host/HostList/HostList.jsx index e5e8cb5829..b4138fc26f 100644 --- a/awx/ui_next/src/screens/Host/HostList/HostList.jsx +++ b/awx/ui_next/src/screens/Host/HostList/HostList.jsx @@ -140,9 +140,9 @@ function HostList({ i18n }) { itemsToDelete={selected} pluralizedItemName={i18n._(t`Hosts`)} />, - ...(canAdd ? [( - ] - ) : [], + ...(canAdd + ? [] + : []), ]} /> )}