aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.js
diff options
context:
space:
mode:
authordave <starpumadev@gmail.com>2019-04-07 11:44:45 -0400
committertaehoon <th.dev91@gmail.com>2019-05-15 12:04:25 -0400
commite6268c492e77f45794af9e8ee8e334e194a6de15 (patch)
tree1884f2d9e580276a3b8b16a77998ab3c72e3e7f1 /src/components/status/status.js
parent5ab0e71500071d3a760f1a67258d10c564b4425e (diff)
#468 - clean up
Diffstat (limited to 'src/components/status/status.js')
-rw-r--r--src/components/status/status.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index 39a1b236..85159fc4 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -362,7 +362,9 @@ const Status = {
this.$store.state.api.backendInteractor.pinOwnStatus(this.status.id).then((status) => {
if (status.error) {
this.error = status.error
- setTimeout(() => this.error = null, 5000)
+ setTimeout(() => {
+ this.error = null
+ }, 5000)
} else {
this.$store.dispatch('updatePinned', status)
}