File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
src/client/components/containers Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,16 @@ function ScheduleContainer() {
12
12
return (
13
13
< div >
14
14
< div className = "is-flex is-flex-direction-row is-justify-content-center is-align-items-center mt-2" >
15
- < div className = "is-flex is-flex-direction-row is-justify-content-center is-align-items-center mr-2 " >
15
+ < div className = "is-flex is-flex-direction-row is-justify-content-center is-align-items-center" >
16
16
< span className = "mr-2" style = { { fontWeight : 'bold' } } >
17
- Frequency (Seconds):
17
+ < p > Frequency</ p >
18
+ < p > (Seconds):</ p >
18
19
</ span >
19
20
< input
20
21
className = { `${ isDark ? 'is-dark-200' : '' } ml-1 input input-is-medium is-info` }
21
- style = { { maxWidth : '15vh ' } }
22
+ style = { { width : '65px ' } }
22
23
type = "number"
23
- min = "1"
24
+ // min="1"
24
25
value = { scheduleInterval }
25
26
onChange = { ( e ) => {
26
27
setScheduleInterval ( e . target . value ) ;
Original file line number Diff line number Diff line change @@ -58,7 +58,8 @@ const StoppedContainer = (props) => {
58
58
< center className = "queue" > Scheduled Requests</ center >
59
59
< div className = "prettify-select is-align-self-center mt-3 mb-3" >
60
60
< button
61
- className = { `button is-small is-danger ${ isDark ? '' : 'is-outlined' } button-hover-color queue-clear` }
61
+ className = { `button is-small is-danger ${ isDark ? '' : 'is-outlined' } button-hover-color` }
62
+ style = { { width : '190px' } }
62
63
onClick = { ( ) => {
63
64
scheduledReqResDelete ( ) ;
64
65
clearAllGraph ( ) ;
You can’t perform that action at this time.
0 commit comments