1
0
Fork 0

chore: changelog update

This commit is contained in:
Joost De Cock 2022-01-28 18:27:20 +01:00
parent 970731ee6f
commit abac05d844
4 changed files with 24 additions and 23 deletions

View file

@ -8,6 +8,7 @@
#### Changed
- Setting Path.render() no longer raises an info message
- Always raise debug, but only store it whend debug is enabled
### simon

View file

@ -3,6 +3,7 @@ unreleased:
Changed:
core:
- Setting Path.render() no longer raises an info message
- Always raise debug, but only store it whend debug is enabled
Fixed:
simon:

View file

@ -6,6 +6,7 @@
### Changed
- Setting Path.render() no longer raises an info message
- Always raise debug, but only store it whend debug is enabled
## 2.20.0 (2022-01-24)

View file

@ -2,8 +2,7 @@ import themes from 'shared/themes/index.js'
import LocaleIcon from 'shared/components/icons/i18n.js'
import { languages } from 'pkgs/i18n'
const LocalePicker = ({ app }) => {
return (
const LocalePicker = ({ app }) => (
<div className="dropdown">
<div tabIndex="0" className={`
m-0 btn btn-neutral flex flex-row gap-2
@ -24,6 +23,5 @@ const LocalePicker = ({ app }) => {
</ul>
</div>
)
}
export default LocalePicker