mirror of
https://github.com/bartvdbraak/SlayerWeightCalculator.git
synced 2025-04-27 09:41:19 +00:00
Change heading weight, remember false behaviour fix
This commit is contained in:
parent
0ccecbef31
commit
7d8ddf7e6b
2 changed files with 2 additions and 2 deletions
|
@ -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">
|
||||
|
|
|
@ -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"));
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue