From 68bbba296c6f99b81d2882e1fef6f37cf4a6bb51 Mon Sep 17 00:00:00 2001 From: Yoshie Muranaka Date: Mon, 18 May 2020 09:49:37 -0700 Subject: Add date filter on Event logs page Created global TableDateFilter component that uses the BootstrapVue Datepicker with a native text input. This will allow users to manually enter a date in ISO format or use the Bootstrap calendar dropdown. Storing language preference from Login to use locale prop on BootstrapVue Datepicker component. Signed-off-by: Yoshie Muranaka Change-Id: I66de9fb04451572c9a90f90d8522934b6204aed2 --- src/views/Login/Login.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/views/Login/Login.vue') diff --git a/src/views/Login/Login.vue b/src/views/Login/Login.vue index d373be22..4d8f2484 100644 --- a/src/views/Login/Login.vue +++ b/src/views/Login/Login.vue @@ -136,7 +136,10 @@ export default { this.$store .dispatch('authentication/login', [username, password]) .then(() => this.$router.push('/')) - .then(localStorage.setItem('storedLanguage', i18n.locale)) + .then(() => { + localStorage.setItem('storedLanguage', i18n.locale); + this.$store.commit('global/setLanguagePreference', i18n.locale); + }) .catch(error => console.log(error)) .finally(() => (this.disableSubmitButton = false)); } -- cgit v1.2.3