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

9 lines
273 B
TypeScript
Raw Normal View History

import { reportDialog } from 'utilities/reportDialog';
export function commentReportHandler(event: Event): void {
event.preventDefault();
const button = event.target as HTMLButtonElement;
const commentId = button.dataset.cId;
reportDialog('comment', commentId);
}