Skip to content

Commit c8df65e

Browse files
committed
version bump
1 parent 0babde6 commit c8df65e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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": "0.2.31-beta-1",
3+
"version": "0.2.31-beta-2",
44
"description": "Supporting common component library",
55
"type": "module",
66
"main": "dist/index.js",

src/Common/Helper.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1046,6 +1046,6 @@ export function asyncWrap(promise): any[] {
10461046

10471047
export const prefixZeroIfSingleDigit = (value: number = 0) => (value > 0 && value < 10 ? `0${value}` : value)
10481048

1049-
export const getContainerRegistryIcon = (registryValue: string) => (
1050-
<div className={`dc__registry-icon dc__git-logo mr-5 ${registryValue}`} />
1049+
export const getContainerRegistryIcon = (registryValue: string): JSX.Element => (
1050+
<div className={`dc__registry-icon dc__git-logo ${registryValue}`} />
10511051
)

0 commit comments

Comments
 (0)