Skip to content

Commit

Permalink
clean up unused objects
Browse files Browse the repository at this point in the history
  • Loading branch information
audip committed Dec 23, 2024
1 parent fc1249f commit e01ea3e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import {SlidingPanel, Spinner, ErrorNotification, NotificationType} from 'argo-ui';
import {SlidingPanel, ErrorNotification, NotificationType} from 'argo-ui';
import {Form, FormApi} from 'react-form';
import {ProgressPopup} from '../../../shared/components';
import {Consumer} from '../../../shared/context';
Expand Down Expand Up @@ -28,7 +28,7 @@ export const ApplicationsRestartPanel = ({show, apps, hide}: {show: boolean; app
onClose={hide}
header={
<div>
<button className='argo-button argo-button--base' onClick={() => form.submitForm(null)}>
<button className='argo-button argo-button--base' disabled={isRestartPending} onClick={() => form.submitForm(null)}>
Restart
</button>{' '}
<button onClick={hide} className='argo-button argo-button--base-o'>
Expand Down

0 comments on commit e01ea3e

Please sign in to comment.