Skip to content

Commit

Permalink
fix: set correct entry for editor SUP-46743
Browse files Browse the repository at this point in the history
  • Loading branch information
amirch1 committed Feb 2, 2025
1 parent 5eff251 commit 566d582
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,10 @@ export class EntryComponent implements OnInit, OnDestroy {
entry: entry,
hasSource: this._entryStore.hasSource.value()
});
item.command = () => this._clipAndTrim.open();
item.command = () => {
this._contentLabSelectedQuiz = this._entryStore.entry;
this._clipAndTrim.open();
}
break;
case 'delete':
item.command = () => {
Expand Down

0 comments on commit 566d582

Please sign in to comment.