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

7 lines
226 B
TypeScript
Raw Normal View History

export function answerboxReportHandler(event: Event): void {
event.preventDefault();
const button = event.target as HTMLButtonElement;
const answerId = button.dataset.aId;
window['reportDialog']('answer', answerId);
}