Skip to content
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"test:circleci": "yarn run test:ci --maxWorkers=2",
"test:ci": "JEST_JUNIT_OUTPUT_DIR=\"./coverage\" jest --ci --coverage",
"lint": "yarn tsc && yarn prettier && yarn eslint",
"lint:fix": "yarn tsc && yarn prettier:fix && yarn eslint:fix",
"eslint": "eslint '{src,cypress}/**/*.{ts,tsx}'",
"eslint:circleci": "eslint",
"eslint:fix": "eslint --fix '{src,cypress}/**/*.{ts,tsx}'",
Expand All @@ -48,7 +49,7 @@
"cy": "CYPRESS_baseUrl=http://localhost:9999 cypress open",
"cy:dev": "source ../monitor-ci/.env && CYPRESS_baseUrl=http://kubernetes.docker.internal:$PORT_HTTPS cypress open --config testFiles='{cloud,shared}/**/*.*'",
"cy:dev-oss": "source ../monitor-ci/.env && CYPRESS_baseUrl=http://kubernetes.docker.internal:$PORT_HTTPS cypress open --config testFiles='{oss,shared}/**/*.*'",
"generate": "oats https://raw.githubusercontent.com/influxdata/influxdb/master/http/swagger.yml > ./src/client/generatedRoutes.ts && yarn unity",
"generate": "echo todo: revert swagger URL && oats https://raw.githubusercontent.com/Sciator/influxdb/feat-new-plot-types/http/swagger.yml > ./src/client/generatedRoutes.ts && yarn unity",
"unity": "oats ./src/client/unity.yml > ./src/client/unityRoutes.ts"
},
"author": "",
Expand Down
1 change: 0 additions & 1 deletion src/shared/components/ColorDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ const ColorDropdown: FC<Props> = props => {

ColorDropdown.defaultProps = {
disabled: false,
style: {flex: '0 0 120px'},
}

export default ColorDropdown
Loading