diff --git a/CHANGELOG.md b/CHANGELOG.md index e2388cc8d..8b4e14da4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ You can also check [on GitHub](https://github.com/nextcloud/news/releases), the ### Fixed - OPML import use text field for title if title field is missing (#3016) - style fixes in settings section and feed info table +- sorting in the feed information table changes also the original sorting # Releases ## [25.2.0-beta.2] - 2024-01-02 diff --git a/src/components/modals/FeedInfoTable.vue b/src/components/modals/FeedInfoTable.vue index 4cdcc279c..9faf33306 100644 --- a/src/components/modals/FeedInfoTable.vue +++ b/src/components/modals/FeedInfoTable.vue @@ -109,7 +109,7 @@ export default { feeds: state => state.feeds.feeds, }), sortedFeeds() { - const sorted = this.feeds + const sorted = [...this.feeds] if (this.sortKey) { sorted.sort((a, b) => { const valueA = a[this.sortKey]