Skip to content

Commit

Permalink
fix: #1145 minor fix for Y axis's legend of bar chart
Browse files Browse the repository at this point in the history
resolve #1145
Changes
- Minor fix for bar chart Y legend
  • Loading branch information
duong-se committed May 12, 2020
1 parent 2c83468 commit 80a7512
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ exports[`ServiceChart handleUseEffect should render Chart 1`] = `
Object {
"scaleLabel": Object {
"display": true,
"labelString": "Total cost",
"labelString": "Total Cost ( £ )",
},
},
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export const renderChart = (isLoading: boolean, datasets: ChartData<any>) => {
{
scaleLabel: {
display: true,
labelString: 'Total cost',
labelString: 'Total Cost ( £ )',
},
},
],
Expand Down
2 changes: 1 addition & 1 deletion packages/marketplace/src/tests/badges/badge-branches.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/marketplace/src/tests/badges/badge-functions.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/marketplace/src/tests/badges/badge-lines.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions packages/web-components/src/scripts/start-search-widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ return (() => {

try {
const clearPublic = 'rimraf ./public/dist && rimraf ./public/themes'
// eslint-disable-next-line max-len
const moveHtml = 'mkdir -p ./public && cp ./src/search-widget/client/index.html ./public/ && cp ./src/property-detail/client/detail.html ./public/'
const moveHtml =
// eslint-disable-next-line max-len
'mkdir -p ./public && cp ./src/search-widget/client/index.html ./public/ && cp ./src/property-detail/client/detail.html ./public/'
// eslint-disable-next-line max-len
const moveTheme = 'mkdir -p ./public/themes && cp ./src/common/styles/__themes__/themes.js ./public/themes'
const clientScript =
Expand Down

0 comments on commit 80a7512

Please sign in to comment.