Skip to content

Commit 4e25440

Browse files
committed
chore: use divider class
1 parent 70fb36e commit 4e25440

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/app/details/appDetails/SourceInfo.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ export const SourceInfo = ({
319319
style={ButtonStyleType.neutral}
320320
ariaLabel="URLs"
321321
/>
322-
<div className="border__primary--left w-1 h-100" />
322+
<div className="divider__primary h-100" />
323323
</>
324324
)}
325325

@@ -355,7 +355,7 @@ export const SourceInfo = ({
355355
}}
356356
ariaLabel={isHibernated ? 'Unhibernate' : 'Hibernate'}
357357
/>
358-
<div className="border__primary--left w-1 h-100" />
358+
<div className="divider__primary h-100" />
359359
</>
360360
)}
361361

@@ -387,7 +387,7 @@ export const SourceInfo = ({
387387
}}
388388
ariaLabel="restart workloads"
389389
/>
390-
<div className="border__primary--left w-1 h-100" />
390+
<div className="divider__primary h-100" />
391391
</>
392392
)}
393393

src/components/charts/ChartHeaderFilters.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ const ChartHeaderFilter = ({
181181
const toggleDeprecated = (): void => {
182182
const value = (includeDeprecated + 1) % 2
183183
handleFilterChanges(value, CHART_KEYS.DEPRECATED)
184-
if (!!value) {
184+
if (value) {
185185
handleAnalyticsEvent({category: 'Chart Store', action: 'CS_SHOW_DEPRECATED'})
186186
}
187187
}

0 commit comments

Comments
 (0)