File tree 2 files changed +3
-2
lines changed
components/Changelog/versions
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -75,9 +75,9 @@ export const App: React.FC = () => {
75
75
const defaultMessageLanguage = languageMessageString ( defaultLocale ) ;
76
76
const messageLanguage = languageMessageString ( language ) ;
77
77
78
- const defaultMessages = await locales [ defaultMessageLanguage ] ( ) ;
78
+ const defaultMessages = ( await locales [ defaultMessageLanguage ] ( ) ) . default ;
79
79
const mergedMessages = cloneDeep ( Object . assign ( { } , defaultMessages ) ) ;
80
- const chosenMessages = await locales [ messageLanguage ] ( ) ;
80
+ const chosenMessages = ( await locales [ messageLanguage ] ( ) ) . default ;
81
81
mergeWith ( mergedMessages , chosenMessages , ( objVal , srcVal ) => {
82
82
if ( srcVal === "" ) {
83
83
return objVal ;
Original file line number Diff line number Diff line change 1
1
### 🐛 Bug fixes
2
+ * Fix New button not being localised correctly. ([ #2772 ] ( https://github.com/stashapp/stash/pull/2772 ) )
2
3
* Fix scene player losing focus when playing next/previous scene. ([ #2758 ] ( https://github.com/stashapp/stash/pull/2758 ) )
3
4
* Fix UI crash when % character used in tag names. ([ #2757 ] ( https://github.com/stashapp/stash/pull/2757 ) )
4
5
* Fix keyboard shortcuts not working after selecting an object. ([ #2750 ] ( https://github.com/stashapp/stash/pull/2750 ) )
You can’t perform that action at this time.
0 commit comments