Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F85595421
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/src/components/bookmark_button/bookmark_button.js b/src/components/bookmark_button/bookmark_button.js
index a7ba1c247f..dbd31ccb7c 100644
--- a/src/components/bookmark_button/bookmark_button.js
+++ b/src/components/bookmark_button/bookmark_button.js
@@ -1,36 +1,36 @@
import { mapGetters } from 'vuex'
import { library } from '@fortawesome/fontawesome-svg-core'
import { faBookmark } from '@fortawesome/free-solid-svg-icons'
import {
faBookmark as faBookmarkReg
} from '@fortawesome/free-regular-svg-icons'
-library.add(faBookmark,faBookmarkReg)
+library.add(faBookmark, faBookmarkReg)
const BookmarkButton = {
props: ['status', 'loggedIn'],
data () {
return {
animated: false
}
},
methods: {
bookmarkStatus () {
if (!this.status.bookmarked) {
this.$store.dispatch('bookmark', { id: this.status.id })
} else {
this.$store.dispatch('unbookmark', { id: this.status.id })
}
this.animated = true
setTimeout(() => {
this.animated = false
}, 500)
}
},
computed: {
...mapGetters(['mergedConfig'])
}
}
export default BookmarkButton
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Sun, Jul 19, 12:40 AM (1 d, 9 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1695174
Default Alt Text
(1 KB)
Attached To
Mode
rPUFE pleroma-fe-upstream
Attached
Detach File
Event Timeline
Log In to Comment