diff --git a/app/assets/javascripts/views/notes/notes_view.ts b/app/assets/javascripts/views/notes/notes_view.ts index 7062c5139..df3d0792a 100644 --- a/app/assets/javascripts/views/notes/notes_view.ts +++ b/app/assets/javascripts/views/notes/notes_view.ts @@ -424,7 +424,10 @@ class NotesViewCtrl extends PureViewCtrl<{}, NotesState> { PrefKey.SortNotesBy, CollectionSort.CreatedAt ); - if (sortBy === CollectionSort.UpdatedAt) { + if ( + sortBy === CollectionSort.UpdatedAt || + (sortBy as string) === "client_updated_at" + ) { /** Use UserUpdatedAt instead */ sortBy = CollectionSort.UpdatedAt; }