File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,15 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 1.0.11]
9+
10+ ### Fixed
11+
12+ - cache invalidations on delete
13+
814## [ v1.0.10]
915
10- ## Fixed
16+ ### Fixed
1117
1218- fix automatic translations for duplicate strings
1319- improve slavik pluralization generations by splitting the requests
Original file line number Diff line number Diff line change 4343import ' flag-icon-css/css/flag-icons.min.css' ;
4444import { IconCaretDownSolid } from ' @iconify-prerendered/vue-flowbite' ;
4545
46- import { setLang , getCountryCodeFromLangCode , getLocalLang } from ' ./langCommon' ;
46+ import { setLang , getCountryCodeFromLangCode , getLocalLang , setLocalLang } from ' ./langCommon' ;
4747
4848import { computed , ref , onMounted , watch } from ' vue' ;
4949import { useI18n } from ' vue-i18n' ;
@@ -56,7 +56,7 @@ const props = defineProps(['meta', 'resource']);
5656const selectedLanguage = ref (' ' );
5757
5858function doChangeLang (lang ) {
59- setLang ({ setLocaleMessage, locale }, props . meta . pluginInstanceId , lang);
59+ setLocalLang ( lang);
6060 // unfortunately, we need this to recall all APIs
6161 document .location .reload ();
6262
You can’t perform that action at this time.
0 commit comments