diff options
author | bobzel <zzzman@gmail.com> | 2024-04-19 11:32:46 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-04-19 11:32:46 -0400 |
commit | 89e5b4e224d77c7a029ec7d9c9027095665508ac (patch) | |
tree | b1163d7090da48d978858caa44c601401a9400f6 /src/client/util/reportManager/ReportManager.tsx | |
parent | b6229b0a6141afbfd0e78e3ec870218187864def (diff) |
lint fixes.
Diffstat (limited to 'src/client/util/reportManager/ReportManager.tsx')
-rw-r--r-- | src/client/util/reportManager/ReportManager.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/reportManager/ReportManager.tsx b/src/client/util/reportManager/ReportManager.tsx index d6fd339a9..02b3ee32c 100644 --- a/src/client/util/reportManager/ReportManager.tsx +++ b/src/client/util/reportManager/ReportManager.tsx @@ -134,7 +134,7 @@ export class ReportManager extends React.Component<{}> { const req = await this.octokit.request('POST /repos/{owner}/{repo}/issues', { owner: 'brown-dash', repo: 'Dash-Web', - title: formatTitle(this.formData.title, ClientUtils.CurrentUserEmail), + title: formatTitle(this.formData.title, ClientUtils.CurrentUserEmail()), body: `${this.formData.description} ${formattedLinks.length > 0 ? `\n\nFiles:\n${formattedLinks.join('\n')}` : ''}`, labels: ['from-dash-app', this.formData.type, this.formData.priority], }); |