Skip to content

Commit 7623968

Browse files
committed
fix some errors
1 parent 771e57b commit 7623968

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/workspaces/NewWorkspaceModal/NewWorkspaceWizard.tsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,8 @@ export const NewWorkspaceWizard = withDisplayName(
596596
checked={enhancedBucketLogging || groups.length > 0}
597597
width={40}
598598
height={20}
599-
disabled={!!requireEnhancedBucketLogging || groups.length > 0}
599+
disabled={!!requireEnhancedBucketLogging || groups.length > 0 || cloningGcpProtectedWorkspace}
600+
aria-describedby='Enable additional security monitoring'
600601
/>
601602
</div>
602603
</div>
@@ -606,7 +607,7 @@ export const NewWorkspaceWizard = withDisplayName(
606607
{(id) => (
607608
<>
608609
<FormLabel htmlFor={id}>Authorization Domain (optional)</FormLabel>
609-
<p style={{ marginLeft: '0.25rem' }}>
610+
<div style={{ marginLeft: '0.25rem' }}>
610611
Authorization Domains restrict data access to only specified individuals in a group and are intended to
611612
fulfill requirements you may have for data governed by a compliance standard, such as federal
612613
controlled-access data or HIPAA protected data. They follow all workspace copies and cannot be removed.
@@ -620,7 +621,7 @@ export const NewWorkspaceWizard = withDisplayName(
620621
</ExternalLink>
621622
.
622623
</p>
623-
</p>
624+
</div>
624625
{!!existingGroups.length && (
625626
<div style={{ marginBottom: '0.5rem', fontSize: 12 }}>
626627
<div style={{ marginBottom: '0.2rem' }}>Inherited groups:</div>

0 commit comments

Comments
 (0)