Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ce-deploy-ui
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ccce
dev
ce-deploy-ui
Commits
72430b3a
Commit
72430b3a
authored
7 months ago
by
Max Frederiksen
Committed by
Max Frederiksen
7 months ago
Browse files
Options
Downloads
Patches
Plain Diff
remove unused imports and vars
parent
dac50970
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!542
Prepare 4.1.0
,
!540
Sync
,
!533
CE-3015: Implement correct error handling for operation errors
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/components/IOC/IOCService/IOCService.js
+2
-5
2 additions, 5 deletions
src/components/IOC/IOCService/IOCService.js
with
2 additions
and
5 deletions
src/components/IOC/IOCService/IOCService.js
+
2
−
5
View file @
72430b3a
...
@@ -5,13 +5,12 @@ import {
...
@@ -5,13 +5,12 @@ import {
Typography
,
Typography
,
Tooltip
Tooltip
}
from
"
@mui/material
"
;
}
from
"
@mui/material
"
;
import
{
useState
,
useEffect
,
useContext
,
useCallback
}
from
"
react
"
;
import
{
useState
,
useEffect
,
useCallback
}
from
"
react
"
;
import
{
ConfirmationDialog
,
useAPIMethod
}
from
"
@ess-ics/ce-ui-common
"
;
import
{
ConfirmationDialog
}
from
"
@ess-ics/ce-ui-common
"
;
import
Alert
from
"
@mui/material/Alert
"
;
import
Alert
from
"
@mui/material/Alert
"
;
import
{
initRequestParams
}
from
"
../../common/Helper
"
;
import
{
initRequestParams
}
from
"
../../common/Helper
"
;
import
AccessControl
from
"
../../auth/AccessControl
"
;
import
AccessControl
from
"
../../auth/AccessControl
"
;
import
{
useNavigate
}
from
"
react-router-dom
"
;
import
{
useNavigate
}
from
"
react-router-dom
"
;
import
{
apiContext
}
from
"
../../../api/DeployApi
"
;
import
{
useStartOperationMutation
}
from
"
../../../store/deployApi
"
;
import
{
useStartOperationMutation
}
from
"
../../../store/deployApi
"
;
import
{
getErrorMessage
}
from
"
../../common/Alerts/ApiAlertError
"
;
import
{
getErrorMessage
}
from
"
../../common/Alerts/ApiAlertError
"
;
...
@@ -30,8 +29,6 @@ export function IOCService({
...
@@ -30,8 +29,6 @@ export function IOCService({
const
[
stopModalOpen
,
setStopModalOpen
]
=
useState
(
false
);
const
[
stopModalOpen
,
setStopModalOpen
]
=
useState
(
false
);
const
[
command
,
setCommand
]
=
useState
(
null
);
const
[
command
,
setCommand
]
=
useState
(
null
);
const
client
=
useContext
(
apiContext
);
const
[
startIOC
,
{
error
:
startJobError
,
data
:
startJob
}]
=
const
[
startIOC
,
{
error
:
startJobError
,
data
:
startJob
}]
=
useStartOperationMutation
();
useStartOperationMutation
();
const
[
stopIOC
,
{
error
:
stopJobError
,
data
:
stopJob
}]
=
const
[
stopIOC
,
{
error
:
stopJobError
,
data
:
stopJob
}]
=
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment