summaryrefslogtreecommitdiffstats
path: root/ui/src/components/main.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-12-01 22:20:01 -0800
committerDessalines <tyhou13@gmx.com>2019-12-01 22:22:05 -0800
commitfab840a759771b0ef72719bb02f60c5acccc6449 (patch)
tree9dcc6b938073c1b7c66d58632358add7f95d9a60 /ui/src/components/main.tsx
parent32c1d56bc75c6457da2c056ea9a9aa482786a88b (diff)
Add sort fields to rss.
- #348
Diffstat (limited to 'ui/src/components/main.tsx')
-rw-r--r--ui/src/components/main.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/src/components/main.tsx b/ui/src/components/main.tsx
index 403368ab..f4ec779f 100644
--- a/ui/src/components/main.tsx
+++ b/ui/src/components/main.tsx
@@ -435,7 +435,10 @@ export class Main extends Component<any, MainState> {
<SortSelect sort={this.state.sort} onChange={this.handleSortChange} />
</span>
{this.state.type_ == ListingType.All && (
- <a href={`${document.location.origin}/feeds/all.xml`}>
+ <a
+ href={`/feeds/all.xml?sort=${SortType[this.state.sort]}`}
+ target="_blank"
+ >
<svg class="icon mx-1 text-muted small">
<use xlinkHref="#icon-rss">#</use>
</svg>