diff --git a/client/src/components/Accounts/AccountsViewsTabs.js b/client/src/components/Accounts/AccountsViewsTabs.js
index fde698a69..93dee0a20 100644
--- a/client/src/components/Accounts/AccountsViewsTabs.js
+++ b/client/src/components/Accounts/AccountsViewsTabs.js
@@ -80,6 +80,7 @@ function AccountsViewsTabs({
className='button--new-view'
icon={}
onClick={handleClickNewView}
+ minimal={true}
/>
diff --git a/client/src/components/AccountsSelectList.js b/client/src/components/AccountsSelectList.js
index f826d33c7..32c58bd9d 100644
--- a/client/src/components/AccountsSelectList.js
+++ b/client/src/components/AccountsSelectList.js
@@ -5,11 +5,12 @@ import {
} from '@blueprintjs/core';
import {Select} from '@blueprintjs/select';
-export default function AccountsMultiSelect({
+export default function AccountsSelectList({
accounts,
onAccountSelected,
error,
initialAccount,
+ defautlSelectText = 'Select account'
}) {
const [selectedAccount, setSelectedAccount] = useState(
initialAccount || null
@@ -36,7 +37,7 @@ export default function AccountsMultiSelect({
onItemSelect={onAccountSelect}>
);
diff --git a/client/src/components/Dashboard/DashboardTopbar.js b/client/src/components/Dashboard/DashboardTopbar.js
index f889b0a35..635832530 100644
--- a/client/src/components/Dashboard/DashboardTopbar.js
+++ b/client/src/components/Dashboard/DashboardTopbar.js
@@ -37,7 +37,7 @@ function DashboardTopbar({