File tree Expand file tree Collapse file tree 5 files changed +9
-4
lines changed Expand file tree Collapse file tree 5 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1- # from node latest alpine 3.12
2- FROM node:alpine3.12 AS repo
1+ # from node lts alpine 3.12
2+ FROM node:lts- alpine3.12 AS repo
33
44# env vars to configure the system
55
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ const SaveState: FC = () => {
3434 return (
3535 < Button
3636 text = "Save Notebook"
37- color = { ComponentColor . Success }
37+ color = { ComponentColor . Default }
3838 type = { ButtonType . Submit }
3939 onClick = { addFlow }
4040 status = { ComponentStatus . Default }
Original file line number Diff line number Diff line change 11@import ' @influxdata/clockface/dist/variables.scss' ;
22@import ' ~src/flows/FlowVariables.scss' ;
33
4+ .submit-btn {
5+ width : 170px ;
6+ }
7+
48.submit-btn--item {
59 align-items : flex-start ;
610}
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ export const Submit: FC = () => {
4646 return (
4747 < ButtonGroup >
4848 < SubmitQueryButton
49+ className = "submit-btn"
4950 text = { runMode }
5051 icon = { IconFont . Play }
5152 submitButtonDisabled = { hasQueries === false }
Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ const FlowHeader: FC = () => {
205205 icon = { IconFont . Share }
206206 onClick = { showShare }
207207 color = {
208- ! share ? ComponentColor . Default : ComponentColor . Secondary
208+ ! share ? ComponentColor . Primary : ComponentColor . Secondary
209209 }
210210 titleText = "Share Notebook"
211211 />
You can’t perform that action at this time.
0 commit comments