Skip to content

Commit 778b7f3

Browse files
committed
chore: update no issue description text
1 parent bc38e1b commit 778b7f3

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtron-labs/devtron-fe-common-lib",
3-
"version": "1.4.0-beta-3",
3+
"version": "1.4.0-beta-8",
44
"description": "Supporting common component library",
55
"type": "module",
66
"main": "dist/index.js",

src/Common/SegmentedBarChart/SegmentedBarChart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const SegmentedBarChart: React.FC<SegmentedBarChartProps> = ({
7272
}
7373

7474
const renderLegend = () => (
75-
<div className={`flexbox flex-wrap dc__row-gap-2 ${isProportional ? 'dc__gap-24' : 'dc__gap-16'}`}>
75+
<div className={`flexbox flex-wrap dc__row-gap-4 ${isProportional ? 'dc__gap-24' : 'dc__gap-16'}`}>
7676
{renderContent()}
7777
</div>
7878
)

src/Shared/Components/Security/SecurityDetailsCards/SecurityCard.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ const SecurityCard = ({ category, subCategory, severityCount = {}, handleCardCli
3737
case SUB_CATEGORIES.MISCONFIGURATIONS:
3838
return hasThreats
3939
? { title: `${totalCount} misconfigurations` }
40-
: { title: 'No misconfiguration', subtitle: 'No misconfigurations found' }
40+
: { title: 'No misconfiguration', subtitle: 'No configuration issues detected in scanned files' }
4141
default:
4242
return hasThreats
4343
? { title: `${totalCount} vulnerabilities` }
44-
: { title: 'No vulnerabilities', subtitle: 'No security vulnerability found' }
44+
: { title: 'No vulnerabilities', subtitle: 'No vulnerabilities or potential threats found' }
4545
}
4646
}
4747

@@ -86,7 +86,7 @@ const SecurityCard = ({ category, subCategory, severityCount = {}, handleCardCli
8686
) : (
8787
<div className="bcn-1 br-4 h-8" />
8888
)}
89-
{subtitle && <span className="cn-9 fs-13">{subtitle}</span>}
89+
{subtitle && <span className="cn-9 fs-13 lh-20">{subtitle}</span>}
9090
</div>
9191
</div>
9292
)

0 commit comments

Comments
 (0)