Skip to content

Commit

Permalink
Fix linter offenses
Browse files Browse the repository at this point in the history
  • Loading branch information
maximilianoertel committed Oct 14, 2024
1 parent 4a99148 commit 089e95f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/ScoreReport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1047,8 +1047,8 @@ const exportData = async ({ selectedRows = null, includeProgress = false }) => {
const fileNameSuffix = includeProgress ? '-scores-progress' : '-scores';
const selectedSuffix = selectedRows ? '-selected' : '';
const fileName = `roar${fileNameSuffix}${selectedSuffix}-${_kebabCase(
getTitle(administrationInfo.value, isSuperAdmin.value),
)}-${_kebabCase(orgInfo.value.name)}.csv`;
getTitle(administrationData.value, isSuperAdmin.value),
)}-${_kebabCase(orgData.value.name)}.csv`;

// Export CSV
exportCsv(exportData, fileName);
Expand Down

0 comments on commit 089e95f

Please sign in to comment.