Skip to content

Commit 18aa6d6

Browse files
committed
chore: version bump
1 parent 7cf8784 commit 18aa6d6

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
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.5.8",
3+
"version": "0.5.8-beta-3",
44
"description": "Supporting common component library",
55
"type": "module",
66
"main": "dist/index.js",

src/Shared/Components/CICDHistory/CiPipelineSourceConfig.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,11 @@ export const CiPipelineSourceConfig = ({
169169
)}
170170
</>
171171
)}
172-
{baseText && <span className="cursor dc__border-dashed--n3-bottom">{baseText}</span>}
172+
{baseText && (
173+
<span className="cursor dc__border-dashed--n3-bottom fw-6 lh-20 fs-13">
174+
{baseText}
175+
</span>
176+
)}
173177
</div>
174178
</Tippy>
175179
)}

src/Shared/Components/GitCommitInfoGeneric/GitCommitInfoGeneric.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ const GitCommitInfoGeneric = ({
192192
}
193193

194194
const renderWebhookTitle = () =>
195-
_webhookData.data.title ? <span className="flex left cn-9 fs-13 fw-6">{_webhookData.data.title}</span> : null
195+
_webhookData.data.title ? <span className="flex left cn-9 fs-14 fw-6">{_webhookData.data.title}</span> : null
196196

197197
const renderPullRequestId = (pullRequestUrl: string) => {
198198
const pullRequestId = pullRequestUrl.split('/').pop()
@@ -228,7 +228,7 @@ const GitCommitInfoGeneric = ({
228228
_webhookData.eventactiontype === WEBHOOK_EVENT_ACTION_TYPE.MERGED && (
229229
<>
230230
{renderPullRequestId(_webhookData.data['git url'])}
231-
<div className="flex dc__content-space pr-16 ">
231+
<div className="flex dc__content-space">
232232
{renderWebhookTitle()}
233233
{selectedCommitInfo ? (
234234
<div className="flexbox dc__align-items-center dc__content-end fs-12">

src/Shared/Components/MaterialHistory/MaterialHistory.component.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const MaterialHistory = ({
6262
{dateKeys.map((date) => {
6363
const historyList = materialHistoryMapWithTime[date]
6464
return (
65-
<>
65+
<div key={date} className="flexbox-col dc__gap-12 py-12 px-16">
6666
{!isCommitInfoModal && (
6767
<div className="flex left dc__gap-8">
6868
<span className="fs-12 lh-18 cn-7 fw-6 w-130">{date}</span>
@@ -96,7 +96,7 @@ const MaterialHistory = ({
9696
</div>
9797
)
9898
})}
99-
</>
99+
</div>
100100
)
101101
})}
102102
</>

0 commit comments

Comments
 (0)