Show extended modal when there are assigned posts
This commit is contained in:
parent
4fbb693bad
commit
08229281e1
|
@ -44,7 +44,7 @@ export default {
|
||||||
case "reassign": {
|
case "reassign": {
|
||||||
await taskActions.showAssignModal(this.topic, {
|
await taskActions.showAssignModal(this.topic, {
|
||||||
targetType: "Topic",
|
targetType: "Topic",
|
||||||
isAssigned: this.topic.isAssigned(),
|
isAssigned: this.topic.isAssigned() || this.topic.hasAssignedPosts(),
|
||||||
onSuccess: () =>
|
onSuccess: () =>
|
||||||
this.appEvents.trigger("post-stream:refresh", { id: firstPostId }),
|
this.appEvents.trigger("post-stream:refresh", { id: firstPostId }),
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue