Commit b856ce3 1 parent 96378a5 commit b856ce3 Copy full SHA for b856ce3
File tree 1 file changed +28
-29
lines changed
1 file changed +28
-29
lines changed Original file line number Diff line number Diff line change @@ -58,37 +58,36 @@ const Maintenance = () => {
58
58
}
59
59
60
60
return (
61
-
62
- < Stack gap = { theme . spacing ( 8 ) } >
63
- < Stack
64
- direction = "row"
65
- justifyContent = "space-between"
66
- alignItems = "center"
67
- mt = { theme . spacing ( 5 ) }
61
+ < Stack gap = { theme . spacing ( 10 ) } >
62
+ < Stack
63
+ direction = "row"
64
+ justifyContent = "space-between"
65
+ alignItems = "center"
66
+ mt = { theme . spacing ( 5 ) }
67
+ >
68
+ < Breadcrumbs list = { [ { name : "maintenance" , path : "/maintenance" } ] } />
69
+ < Button
70
+ variant = "contained"
71
+ color = "accent"
72
+ onClick = { ( ) => {
73
+ navigate ( "/maintenance/create" ) ;
74
+ } }
75
+ sx = { { fontWeight : 500 } }
68
76
>
69
- < Breadcrumbs list = { [ { name : "maintenance" , path : "/maintenance" } ] } />
70
- < Button
71
- variant = "contained"
72
- color = "accent"
73
- onClick = { ( ) => {
74
- navigate ( "/maintenance/create" ) ;
75
- } }
76
- sx = { { fontWeight : 500 } }
77
- >
78
- Create maintenance window
79
- </ Button >
80
- </ Stack >
81
- < MaintenanceTable
82
- page = { page }
83
- setPage = { setPage }
84
- rowsPerPage = { rowsPerPage }
85
- sort = { sort }
86
- setSort = { setSort }
87
- maintenanceWindows = { maintenanceWindows }
88
- maintenanceWindowCount = { maintenanceWindowCount }
89
- updateCallback = { handleActionMenuDelete }
90
- />
77
+ Create maintenance window
78
+ </ Button >
91
79
</ Stack >
80
+ < MaintenanceTable
81
+ page = { page }
82
+ setPage = { setPage }
83
+ rowsPerPage = { rowsPerPage }
84
+ sort = { sort }
85
+ setSort = { setSort }
86
+ maintenanceWindows = { maintenanceWindows }
87
+ maintenanceWindowCount = { maintenanceWindowCount }
88
+ updateCallback = { handleActionMenuDelete }
89
+ />
90
+ </ Stack >
92
91
) ;
93
92
} ;
94
93
You can’t perform that action at this time.
0 commit comments