mirror of
https://github.com/discourse/discourse.git
synced 2026-07-29 23:58:12 -05:00
FIX: Add missing props to move-to-topic (#23349)
Fixes tagging topics in that modal.
This commit is contained in:
@@ -79,6 +79,14 @@ export default class MoveToTopic extends Component {
|
||||
return this.canSplitTopic && this.currentUser?.admin;
|
||||
}
|
||||
|
||||
get canAddTags() {
|
||||
return this.site.can_create_tag;
|
||||
}
|
||||
|
||||
get canTagMessages() {
|
||||
return this.site.can_tag_pms;
|
||||
}
|
||||
|
||||
@action
|
||||
performMove() {
|
||||
if (this.newTopic) {
|
||||
|
||||
Reference in New Issue
Block a user