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 #### Changed
- Setting Path.render() no longer raises an info message - Setting Path.render() no longer raises an info message
- Always raise debug, but only store it whend debug is enabled
### simon ### simon

View file

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

View file

@ -6,6 +6,7 @@
### Changed ### Changed
- Setting Path.render() no longer raises an info message - 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) ## 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 LocaleIcon from 'shared/components/icons/i18n.js'
import { languages } from 'pkgs/i18n' import { languages } from 'pkgs/i18n'
const LocalePicker = ({ app }) => { const LocalePicker = ({ app }) => (
return (
<div className="dropdown"> <div className="dropdown">
<div tabIndex="0" className={` <div tabIndex="0" className={`
m-0 btn btn-neutral flex flex-row gap-2 m-0 btn btn-neutral flex flex-row gap-2
@ -23,7 +22,6 @@ const LocalePicker = ({ app }) => {
))} ))}
</ul> </ul>
</div> </div>
) )
}
export default LocalePicker export default LocalePicker