Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release #438

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 15 additions & 18 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 @@

<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 '}'

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 '}'

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 '}'

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
Loading