diff --git a/src/api/MyPrayerJournal.Api/Data.fs b/src/api/MyPrayerJournal.Api/Data.fs index 3a2d948..82dc684 100644 --- a/src/api/MyPrayerJournal.Api/Data.fs +++ b/src/api/MyPrayerJournal.Api/Data.fs @@ -242,7 +242,7 @@ type AppDbContext (opts : DbContextOptions) = member this.JournalByUserId userId : JournalRequest seq = upcast this.Journal .Where(fun r -> r.userId = userId && r.lastStatus <> "Answered") - .OrderBy(fun r -> r.asOf) + .OrderBy(fun r -> r.showAfter) /// Retrieve a request by its ID and user ID member this.TryRequestById reqId userId =