Change heading weight, remember false behaviour fix

This commit is contained in:
Bart van der Braak 2020-02-05 13:33:09 +01:00
parent 0ccecbef31
commit 7d8ddf7e6b
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
<div class="pt-3 pb-2 my-2 px-4">
<b-row>
<b-col>
<h1 class="h3 text-uppercase mb-4">Account Settings</h1>
<h1 class="h3 text-uppercase font-weight-bolder mb-4">Account Settings</h1>
</b-col>
<b-col class="flex-column">
<b-button-toolbar aria-label="Toolbar with button groups and input groups">

View file

@ -74,7 +74,7 @@ export default {
}
},
created() {
if (localStorage.getItem("configData")) {
if (localStorage.getItem("configData") && localStorage.getItem('remember') === 'true') {
this.mainConfig = JSON.parse(localStorage.getItem("configData"));
}
},