Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/instances/list/NewInstanceCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function NewInstanceCard() {
<div className="my-4">
<i className="fa fa-2x fa-plus-circle new-instance-plus" />
</div>
<span>Register User-Installed Instance</span>
<span>Register Enterprise Instance</span>
</CardBody>
</Card>
</Col>
Expand Down
5 changes: 4 additions & 1 deletion src/components/instances/new/TypeAWS.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
import React from 'react';
import { Row, Col, Card, CardBody, Button } from 'reactstrap';
import { useStoreState } from 'pullstate';
import AWSLogo from '../../shared/logos/AWSLogo';
import appState from '../../../functions/state/appState';

function TypeAWS({ setFormData }) {
const theme = useStoreState(appState, (s) => s.theme);
return (
<Card className="mb-3">
<CardBody className="instance-form-card-body">
<Row>
<Col xs="8" className="logo-header">
<AWSLogo />
<AWSLogo theme={theme} />
</Col>
<Col xs="4">
<Button
Expand Down
5 changes: 4 additions & 1 deletion src/components/instances/new/TypeVerizon.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
import React from 'react';
import { Row, Col, Card, CardBody, Button } from 'reactstrap';
import { useStoreState } from 'pullstate';
import VerizonLogo from '../../shared/logos/VerizonLogo';
import appState from '../../../functions/state/appState';

function TypeVerizon({ setFormData }) {
const theme = useStoreState(appState, (s) => s.theme);
return (
<Card className="mb-3">
<CardBody className="instance-form-card-body">
<Row>
<Col xs="8" className="logo-header">
<VerizonLogo />
<VerizonLogo theme={theme} />
</Col>
<Col xs="4">
<Button
Expand Down
17 changes: 15 additions & 2 deletions src/components/shared/logos/AWSLogo.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions src/components/shared/logos/VerizonLogo.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading