📝 Typo
This commit is contained in:
parent
3e3fd327d1
commit
fd4dcad80c
1 changed files with 0 additions and 7 deletions
|
|
@ -26,8 +26,6 @@ const app = new Vue({
|
|||
headers: '',
|
||||
body: ''
|
||||
},
|
||||
|
||||
// Load history from local storage
|
||||
history: window.localStorage.getItem("history") ? JSON.parse(window.localStorage.getItem("history")) : []
|
||||
},
|
||||
computed: {
|
||||
|
|
@ -70,8 +68,6 @@ const app = new Vue({
|
|||
methods: {
|
||||
deleteHistory(entry) {
|
||||
this.history.splice(this.history.indexOf(entry), 1)
|
||||
|
||||
// Update the history
|
||||
window.localStorage.setItem("history", JSON.stringify(this.history))
|
||||
},
|
||||
useHistory({
|
||||
|
|
@ -97,10 +93,7 @@ const app = new Vue({
|
|||
url: this.url,
|
||||
path: this.path
|
||||
})
|
||||
|
||||
// Persist history in Local Storage
|
||||
window.localStorage.setItem("history", JSON.stringify(this.history))
|
||||
|
||||
if (this.$refs.response.classList.contains('hidden')) {
|
||||
this.$refs.response.classList.toggle('hidden')
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue