Commit 1b1be1f4 authored by Emiliano Balbuena's avatar Emiliano Balbuena

(fix): Unwanted console.log

parent 9de57d28
1 merge request!651(fix): Mass NSFW XHR trigger when admins view posts
Pipeline #95374978 failed with stages
in 7 minutes and 7 seconds
......@@ -345,7 +345,6 @@ export class PostMenuComponent implements OnInit {
}
onNSFWSelected(reasons: Array<{ label; value; selected }>) {
console.log('yo');
const nsfw = reasons.map(reason => reason.value);
this.client.post(`api/v2/admin/nsfw/${this.entity.guid}`, { nsfw });
this.entity.nsfw = nsfw;
......
Please register or to comment