Skip to content

Commit

Permalink
Merge pull request #428 from Maithani-ji/#177solved
Browse files Browse the repository at this point in the history
#177 It would be nice if boxes/frames had labels  "SOLVED"
  • Loading branch information
tianni4104 authored Jan 4, 2024
2 parents 272169f + 424cf7f commit 9a7b562
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/views/deployment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,22 +118,22 @@ export default class DeploymentView extends Base<Props, State> {

<HpaPanel spec={hpa && hpa.spec}/>

<div className='contentPanel_header'>Replica Sets</div>
<div className='contentPanel_header' style={{ fontWeight: 'bold' }}>Replica Sets</div>

Check failure on line 121 in client/src/views/deployment.tsx

View workflow job for this annotation

GitHub Actions / build-client

There should be no space after '{'

Check failure on line 121 in client/src/views/deployment.tsx

View workflow job for this annotation

GitHub Actions / build-client

There should be no space before '}'
<ReplicaSetsPanel
items={filteredReplicaSets}
sort={replicaSetsSort}
includeNamespace={false}
/>

<div className='contentPanel_header'>Pods</div>
<div className='contentPanel_header' style={{ fontWeight: 'bold' }}>Pods</div>

Check failure on line 128 in client/src/views/deployment.tsx

View workflow job for this annotation

GitHub Actions / build-client

There should be no space after '{'

Check failure on line 128 in client/src/views/deployment.tsx

View workflow job for this annotation

GitHub Actions / build-client

There should be no space before '}'
<PodsPanel
items={filteredPods}
sort={podsSort}
metrics={filteredMetrics}
skipNamespace={true}
/>

<div className='contentPanel_header'>Events</div>
<div className='contentPanel_header' style={{ fontWeight: 'bold' }}>Events</div>

Check failure on line 136 in client/src/views/deployment.tsx

View workflow job for this annotation

GitHub Actions / build-client

There should be no space after '{'

Check failure on line 136 in client/src/views/deployment.tsx

View workflow job for this annotation

GitHub Actions / build-client

There should be no space before '}'
<EventsPanel
shortList={true}
sort={eventsSort}
Expand Down

0 comments on commit 9a7b562

Please sign in to comment.