From 185d22788c8c941d7a01fdfce39fc2a72efc60e3 Mon Sep 17 00:00:00 2001 From: Sergii Leonenko Date: Tue, 14 Sep 2021 10:32:58 +0300 Subject: [PATCH] TT#140900 Issue - Login - Unable to log in Change-Id: Ifb13220cf8cd0ad30fa2cfe2cabd874d478f2583 --- .gitignore | 1 + src/store/user.js | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9c01e7ee..29287e9f 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,7 @@ yarn-error.log* *.njsproj *.sln +/src/config/app.js /src/config.js /junit.xml diff --git a/src/store/user.js b/src/store/user.js index 02861280..48aecaac 100644 --- a/src/store/user.js +++ b/src/store/user.js @@ -1,6 +1,5 @@ 'use strict' -import router from '../router' import Vue from 'vue' import _ from 'lodash' import { @@ -394,7 +393,7 @@ export default { }, async forwardHome (context) { if (context.rootState.route?.path === '/user/dashboard' && !context.getters.isRtcEngineUiVisible) { - await router.push({ path: '/user/conversations' }) + await this.$router.push({ path: '/user/conversations' }) } }, async getCustomLogo (context) {