|
@@ -1,5 +1,7 @@
|
|
|
import React from 'react';
|
|
import React from 'react';
|
|
|
|
|
+
|
|
|
import PropTypes from 'prop-types';
|
|
import PropTypes from 'prop-types';
|
|
|
|
|
+
|
|
|
import Bridge from './Bridge';
|
|
import Bridge from './Bridge';
|
|
|
|
|
|
|
|
const CustomBotWithProxyConnectionStatus = (props) => {
|
|
const CustomBotWithProxyConnectionStatus = (props) => {
|
|
@@ -14,7 +16,7 @@ const CustomBotWithProxyConnectionStatus = (props) => {
|
|
|
<div className="d-flex justify-content-center my-5 bot-integration">
|
|
<div className="d-flex justify-content-center my-5 bot-integration">
|
|
|
|
|
|
|
|
<div className="card rounded shadow border-0 w-50 admin-bot-card">
|
|
<div className="card rounded shadow border-0 w-50 admin-bot-card">
|
|
|
- <h5 className="card-title font-weight-bold mt-3 ms-3">Slack</h5>
|
|
|
|
|
|
|
+ <h5 className="card-title fw-bold mt-3 ms-3">Slack</h5>
|
|
|
<div className="card-body px-5">
|
|
<div className="card-body px-5">
|
|
|
{connectionStatusValues.map((connectionStatus, i) => {
|
|
{connectionStatusValues.map((connectionStatus, i) => {
|
|
|
const workspaceName = connectionStatus.workspaceName || `Settings #${i}`;
|
|
const workspaceName = connectionStatus.workspaceName || `Settings #${i}`;
|
|
@@ -22,7 +24,7 @@ const CustomBotWithProxyConnectionStatus = (props) => {
|
|
|
return (
|
|
return (
|
|
|
<div key={workspaceName} className="card slack-work-space-name-card">
|
|
<div key={workspaceName} className="card slack-work-space-name-card">
|
|
|
<div className="m-2 text-center">
|
|
<div className="m-2 text-center">
|
|
|
- <h5 className="font-weight-bold">{workspaceName}</h5>
|
|
|
|
|
|
|
+ <h5 className="fw-bold">{workspaceName}</h5>
|
|
|
<img width={20} height={20} src="/images/slack-integration/growi-bot-kun-icon.png" />
|
|
<img width={20} height={20} src="/images/slack-integration/growi-bot-kun-icon.png" />
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
@@ -35,8 +37,8 @@ const CustomBotWithProxyConnectionStatus = (props) => {
|
|
|
<Bridge errorCount={errorCount} totalCount={totalCount} withProxy />
|
|
<Bridge errorCount={errorCount} totalCount={totalCount} withProxy />
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
- <div className="card rounded-lg shadow border-0 w-50 admin-bot-card">
|
|
|
|
|
- <h5 className="card-title font-weight-bold mt-3 ms-3">GROWI App</h5>
|
|
|
|
|
|
|
+ <div className="card rounded-3 shadow border-0 w-50 admin-bot-card">
|
|
|
|
|
+ <h5 className="card-title fw-bold mt-3 ms-3">GROWI App</h5>
|
|
|
<div className="card-body text-center">
|
|
<div className="card-body text-center">
|
|
|
<div className="mx-md-3 my-4 my-lg-5 p-2 border bg-primary text-light">
|
|
<div className="mx-md-3 my-4 my-lg-5 p-2 border bg-primary text-light">
|
|
|
{siteName}
|
|
{siteName}
|