added space between buttons
This commit is contained in:
parent
72907d2583
commit
5d5160bddc
1 changed files with 14 additions and 9 deletions
|
@ -7,6 +7,7 @@ import {
|
|||
Button,
|
||||
ButtonVariant,
|
||||
PageSection,
|
||||
ToolbarItem,
|
||||
} from "@patternfly/react-core";
|
||||
|
||||
import { ViewHeader } from "../components/view-header/ViewHeader";
|
||||
|
@ -92,15 +93,19 @@ export const ClientsSection = () => {
|
|||
searchPlaceholderKey="clients:searchForClient"
|
||||
toolbarItem={
|
||||
<>
|
||||
<ToolbarItem>
|
||||
<Button onClick={() => history.push(`${url}/add-client`)}>
|
||||
{t("createClient")}
|
||||
</Button>
|
||||
</ToolbarItem>
|
||||
<ToolbarItem>
|
||||
<Button
|
||||
onClick={() => history.push(`${url}/import-client`)}
|
||||
variant="link"
|
||||
>
|
||||
{t("importClient")}
|
||||
</Button>
|
||||
</ToolbarItem>
|
||||
</>
|
||||
}
|
||||
actions={[
|
||||
|
|
Loading…
Reference in a new issue