Rename CSS installed-channel to registered-channel.

This commit is contained in:
Gan Eng Chin 2023-01-21 02:38:00 +08:00
parent ef669d8ca2
commit 1af1524b83
No known key found for this signature in database
GPG Key ID: 94D5D972860ADB01
2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
.woocommerce-marketing-installed-channel-card-body {
.woocommerce-marketing-installed-channel-description {
.woocommerce-marketing-registered-channel-card-body {
.woocommerce-marketing-registered-channel-description {
display: flex;
gap: $gap-smaller;

View File

@ -114,11 +114,11 @@ export const RegisteredChannelCardBody: React.FC<
const description = ! registeredChannel.isSetupCompleted ? (
registeredChannel.description
) : (
<div className="woocommerce-marketing-installed-channel-description">
<div className="woocommerce-marketing-registered-channel-description">
{ registeredChannel.syncStatus && (
<>
<SyncStatus status={ registeredChannel.syncStatus } />
<div className="woocommerce-marketing-installed-channel-description__separator" />
<div className="woocommerce-marketing-registered-channel-description__separator" />
</>
) }
<IssueStatus registeredChannel={ registeredChannel } />
@ -144,7 +144,7 @@ export const RegisteredChannelCardBody: React.FC<
return (
<PluginCardBody
className="woocommerce-marketing-installed-channel-card-body"
className="woocommerce-marketing-registered-channel-card-body"
icon={
<img
src={ registeredChannel.icon }