Show extended modal when there are assigned posts

This commit is contained in:
Andrei Prigorshnev 2024-03-29 19:44:10 +04:00
parent 4fbb693bad
commit 08229281e1
No known key found for this signature in database
GPG Key ID: 185E0A5F45783902
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ export default {
case "reassign": {
await taskActions.showAssignModal(this.topic, {
targetType: "Topic",
isAssigned: this.topic.isAssigned(),
isAssigned: this.topic.isAssigned() || this.topic.hasAssignedPosts(),
onSuccess: () =>
this.appEvents.trigger("post-stream:refresh", { id: firstPostId }),
});