Added stash archiving.

This commit is contained in:
2026-07-26 03:40:32 +02:00
parent 02ee99d52f
commit bf220f6b4e
5 changed files with 97 additions and 2 deletions

View File

@@ -30,6 +30,7 @@ const domainKey = {
}[props.domain];
const sortedStashes = computed(() => props.stashes
.filter((stash) => !stash.isArchived)
.toSorted((stashA, stashB) => {
return stashA.createdAt - stashB.createdAt;
})