feat: Drag collection into starred section to star

This commit is contained in:
Tom Moor
2023-12-19 10:27:31 -05:00
parent c1b2d3c4a7
commit 6616276e4b
7 changed files with 165 additions and 150 deletions

View File

@@ -275,7 +275,7 @@ export default class Collection extends ParanoidModel {
}
@action
star = async () => this.store.star(this);
star = async (index?: string) => this.store.star(this, index);
@action
unstar = async () => this.store.unstar(this);