move saving of siteType to existing method
This commit is contained in:
parent
83a9dcf63d
commit
c577872b66
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,6 @@ export default {
|
|||
|
||||
if (clientTagPresent) {
|
||||
const resp = await validateISSClientTag(clientTag);
|
||||
this.mainStore.issConfig.siteType = resp.data.siteType;
|
||||
|
||||
if (resp?.data.active && resp?.data.accountName.length > 0) {
|
||||
if (resp.data.authentication === 'RSAToken') {
|
||||
|
|
@ -101,6 +100,7 @@ export default {
|
|||
this.mainStore.issConfig.parentAccountNumber = data.parentAccountNumber;
|
||||
this.mainStore.issConfig.styleSheet = data.styleSheet;
|
||||
this.mainStore.issConfig.isCoverageEnabled = data.coverageEnabled;
|
||||
this.mainStore.issConfig.siteType = data.siteType;
|
||||
|
||||
try {
|
||||
if (data.clientFlags) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue