Skip to content

Commit

Permalink
2.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
richford committed May 7, 2024
1 parent ab4caaa commit 10d9baa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "roar-dashboard",
"private": true,
"version": "2.4.2",
"version": "2.4.3",
"scripts": {
"build": "export VITE_FIREBASE_DATA_SOURCE=live && vite build",
"build:sandbox": "export VITE_FIREBASE_DATA_SOURCE=sandbox && vite build",
Expand Down
6 changes: 3 additions & 3 deletions src/components/RoarDataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@
v-tooltip.bottom="'Export all scores for selected students to CSV file for spreadsheet import'"
label="Export Selected"
:disabled="selectedRows.length === 0"
@click="exportCSV(true, $event)"
class="m-2"
@click="exportCSV(true, $event)"
/>
<PvButton
v-if="allowExport"
v-tooltip.bottom="'Export all scores for all students to a CSV file for spreadsheet import.'"
label="Export Whole Table"
@click="exportCSV(false, $event)"
class="m-2"
@click="exportCSV(false, $event)"
/>
<PvButton :label="rowViewMode" @click="toggleView" class="my-2" />
<PvButton :label="rowViewMode" class="my-2" @click="toggleView" />
</span>
</div>
<div class="flex flex-column">
Expand Down

0 comments on commit 10d9baa

Please sign in to comment.