Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix lint errors
  • Loading branch information
marcelklehr committed Aug 2, 2020
commit e587a33efb42f552f7eee395a636a141b0cc95ca
8 changes: 1 addition & 7 deletions src/components/Breadcrumbs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,13 +153,7 @@ export default {
rssURL() {
return (window.location.origin
+ generateUrl('/apps/bookmarks/public/rest/v2/bookmark?'
+ new URLSearchParams(
Object.assign({}, this.$store.state.fetchState.query, {
format: 'rss',
page: -1,
...(this.$store.state.public && { token: this.$store.state.authToken }),
}))
.toString()
+ new URLSearchParams(Object.assign({}, this.$store.state.fetchState.query, { format: 'rss', page: -1, ...(this.$store.state.public && { token: this.$store.state.authToken }) })).toString()
)
)
},
Expand Down