Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

correctly sort instagram stories by date #44

Merged
merged 1 commit into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions src/psaggregator/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/psaggregator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "psaggregator",
"version": "1.9.0",
"version": "1.9.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
Expand Down
10 changes: 4 additions & 6 deletions src/psaggregator/src/lib/components/Changelog.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,12 @@
<div class="grow overflow-y-auto" id="changelog-contents">
<h2 class="mb-4 text-2xl font-bold">Bugfixes</h2>
<div>
<span>Ton in Instagram Stories</span>
<span>Der Ton in Instagram Stories kann nun ein- und ausgeschaltet werden.</span>
<span>Sortierung Instagram Stories</span>
<span>Instagram Stories sind nun richtig sortiert.</span>
</div>
<div>
<span>pietsmiet.de Import</span>
<span
>Ein einzelnes Video konnte aufgrund eines selten Fehlers letzte Woche nicht importiert werden. Diesen Fehler habe ich
behoben.</span>
<span>Ton in Instagram Stories</span>
<span>Der Ton in Instagram Stories kann nun ein- und ausgeschaltet werden.</span>
</div>
<h2 class="my-4 text-2xl font-bold">Neue Features</h2>
<div>
Expand Down
2 changes: 1 addition & 1 deletion src/psaggregator/src/routes/news/+page.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export async function load() {
InformationResource: true,
},
orderBy: {
date: "desc"
date: "asc"
}
}) as Array<Information & { InformationResource: InformationResource[] }>;

Expand Down
Loading