Skip to content

Commit

Permalink
rename label
Browse files Browse the repository at this point in the history
  • Loading branch information
milan-deepfence committed Nov 8, 2023
1 parent 05ea908 commit 6c74c1e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ export const ComplianceScanConfigureForm = ({
!isKubernetesNode(nodeType) ? (
<div className="flex flex-col gap-y-2 mt-4">
<h6 className={'text-p3 dark:text-text-text-and-icon'}>Priority scan</h6>
<Checkbox name="isPriorityScan" label="Set priority scan" />
<Checkbox name="isPriorityScan" label="Priority scan" />
</div>
) : null}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ export const MalwareScanConfigureForm = ({
{shouldSetPriorityScan(nodeType as MalwareScanNodeTypeEnum) ? (
<div className="flex flex-col gap-y-2 mt-4">
<h6 className={'text-p3 dark:text-text-text-and-icon'}>Priority scan</h6>
<Checkbox name="isPriorityScan" label="Set priority scan" />
<Checkbox name="isPriorityScan" label="Priority scan" />
</div>
) : null}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ export const SecretScanConfigureForm = ({
{shouldSetPriorityScan(nodeType as SecretScanNodeTypeEnum) ? (
<div className="flex flex-col gap-y-2 mt-4">
<h6 className={'text-p3 dark:text-text-text-and-icon'}>Priority scan</h6>
<Checkbox name="isPriorityScan" label="Set priority scan" />
<Checkbox name="isPriorityScan" label="Priority scan" />
</div>
) : null}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ export const VulnerabilityScanConfigureForm = ({
{shouldSetPriorityScan(nodeType as VulnerabilityScanNodeTypeEnum) ? (
<div className="flex flex-col gap-y-2 mt-4">
<h6 className={'text-p3 dark:text-text-text-and-icon'}>Priority scan</h6>
<Checkbox name="isPriorityScan" label="Set priority scan" />
<Checkbox name="isPriorityScan" label="Priority scan" />
</div>
) : null}

Expand Down

0 comments on commit 6c74c1e

Please sign in to comment.