diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a30ca8d1..4390d17b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,38 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [v2.1.2](https://github.com/felixmosh/bull-board/compare/v2.1.1...v2.1.2) + +- Bump deps [`59ad669`](https://github.com/felixmosh/bull-board/commit/59ad66912dddfbbbdabc23024b96286e977c9d3a) +- Fix prettier config && reformat the code [`ab134ca`](https://github.com/felixmosh/bull-board/commit/ab134ca0a26092c12b41c77b5159e21e24983fe4) +- Fix type issue [`04221c9`](https://github.com/felixmosh/bull-board/commit/04221c94242277363577d679a9524c857cc8b7e0) + +#### [v2.1.1](https://github.com/felixmosh/bull-board/compare/v2.1.0...v2.1.1) + +> 26 May 2021 + +- Fix blurry fonts [`f1d9b04`](https://github.com/felixmosh/bull-board/commit/f1d9b044af872382a7a08dac5f7e5eb13acd4387) +- Release 2.1.1 [`0be050b`](https://github.com/felixmosh/bull-board/commit/0be050ba66b8d681528968184192350b11c3ec43) + +#### [v2.1.0](https://github.com/felixmosh/bull-board/compare/v2.0.3...v2.1.0) + +> 21 May 2021 + +- feat: add addQueue and removeQueue methods [`#278`](https://github.com/felixmosh/bull-board/pull/278) +- fix ejs semicolon [`#275`](https://github.com/felixmosh/bull-board/pull/275) +- Bump deps [`9990162`](https://github.com/felixmosh/bull-board/commit/99901623ab2c0e452c94cc783951203db854a14d) +- Release 2.1.0 [`f3dfb68`](https://github.com/felixmosh/bull-board/commit/f3dfb6867ac8e9f04a5989e0fa57537139e3dc68) + #### [v2.0.3](https://github.com/felixmosh/bull-board/compare/v2.0.2...v2.0.3) +> 9 May 2021 + - fix: Update ioredis types & align adapter types, closes #271, #272 [`#273`](https://github.com/felixmosh/bull-board/pull/273) - chore(deps): bump lodash in /examples/with-multiple-instances [`#270`](https://github.com/felixmosh/bull-board/pull/270) - chore(deps): bump lodash from 4.17.20 to 4.17.21 in /examples/with-auth [`#269`](https://github.com/felixmosh/bull-board/pull/269) - fix: Update ioredis types & align adapter types, closes #271, #272 (#273) [`#271`](https://github.com/felixmosh/bull-board/issues/271) - Update example deps [`0f4db3a`](https://github.com/felixmosh/bull-board/commit/0f4db3ab76289d5b4072801a937147a883798754) +- Release 2.0.3 [`39f7453`](https://github.com/felixmosh/bull-board/commit/39f745371af750a0776f10c7641786a9f4f1a8ed) #### [v2.0.2](https://github.com/felixmosh/bull-board/compare/v2.0.1...v2.0.2) diff --git a/packages/ui/src/components/Highlight/Highlight.tsx b/packages/ui/src/components/Highlight/Highlight.tsx index 63af2d4a1..80a611354 100644 --- a/packages/ui/src/components/Highlight/Highlight.tsx +++ b/packages/ui/src/components/Highlight/Highlight.tsx @@ -26,6 +26,7 @@ export class Highlight extends React.Component { (item: any) => !([] as any).concat(nextProps.children).includes(item) ) + ? this.props.children.some((item: any) => !([] as any).concat(nextProps.children).includes(item)) : nextProps.children !== this.props.children) ); } diff --git a/packages/ui/src/components/JobCard/Details/DetailsContent/JobLogs/JobLogs.module.css b/packages/ui/src/components/JobCard/Details/DetailsContent/JobLogs/JobLogs.module.css index 639baf65f..b490612f5 100644 --- a/packages/ui/src/components/JobCard/Details/DetailsContent/JobLogs/JobLogs.module.css +++ b/packages/ui/src/components/JobCard/Details/DetailsContent/JobLogs/JobLogs.module.css @@ -1,11 +1,11 @@ .jobLogs { - margin: 0; + margin: 0; } .jobLogs > li + li { - margin-top: 0.5em; + margin-top: 0.5em; } .jobLogs > li { - white-space: pre-line; + white-space: pre-line; } diff --git a/packages/ui/src/components/Tooltip/Tooltip.tsx b/packages/ui/src/components/Tooltip/Tooltip.tsx index 337ba0b94..b727df917 100644 --- a/packages/ui/src/components/Tooltip/Tooltip.tsx +++ b/packages/ui/src/components/Tooltip/Tooltip.tsx @@ -1,10 +1,7 @@ import React from 'react'; import s from './Tooltip.module.css'; -export const Tooltip = ({ - title, - children, -}: React.PropsWithChildren<{ title: string }>) => ( +export const Tooltip = ({ title, children }: React.PropsWithChildren<{ title: string }>) => ( {children}