Retrospring/app/javascript/retrospring/features/answerbox/comment/report.ts

7 lines
227 B
TypeScript
Raw Normal View History

export function commentReportHandler(event: Event): void {
event.preventDefault();
const button = event.target as HTMLButtonElement;
const commentId = button.dataset.cId;
window['reportDialog']('comment', commentId);
}