mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
slice
This commit is contained in:
parent
cfc18827bb
commit
82851d519d
1 changed files with 3 additions and 1 deletions
|
|
@ -250,7 +250,9 @@ export class EditorGroupWatermark extends Disposable {
|
|||
linkSpan.appendChild(dirSpan);
|
||||
|
||||
return linkSpan
|
||||
}).filter(v => !!v)
|
||||
})
|
||||
.filter(v => !!v)
|
||||
.slice(0, 5) // take 5 most recent
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue