Skip to content

Commit 1eeb764

Browse files
authored
Merge pull request #531 from VariantEffect/release-2025.4.5
Release 2025.4.5
2 parents f82b6ff + d1ffbca commit 1eeb764

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mavedb-ui",
3-
"version": "2025.4.4",
3+
"version": "2025.4.5",
44
"private": true,
55
"type": "module",
66
"scripts": {

src/components/ScoreSetPreviewTable.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
</TabPanel>
3535
<TabPanel header="Counts">
3636
<div style="overflow-y: scroll; overflow-x: scroll">
37-
<DataTable :show-gridlines="true" :striped-rows="true" :value="countsTableData">
38-
<template #empty>No count data available.</template>
37+
<template v-if="!countsTableData || countsTableData.length === 0"> No count data available. </template>
38+
<DataTable v-else :show-gridlines="true" :striped-rows="true" :value="countsTableData">
3939
<Column
4040
v-for="column of countColumns.slice(0, numTextColsInScoresTable)"
4141
:key="column"

src/components/screens/ScoreSetView.vue

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -686,10 +686,7 @@ export default {
686686
if (this.item && download_type == 'counts') {
687687
response = await axios.get(`${config.apiBaseUrl}/score-sets/${this.item.urn}/counts?drop_na_columns=true`)
688688
} else if (this.item && download_type == 'scores') {
689-
response = await axios.get(
690-
`${config.apiBaseUrl}/score-sets/${this.item.urn}/variants/data?drop_na_columns=true`
691-
)
692-
//response = await axios.get(`${config.apiBaseUrl}/score-sets/${this.item.urn}/scores?drop_na_columns=true`)
689+
response = await axios.get(`${config.apiBaseUrl}/score-sets/${this.item.urn}/scores?drop_na_columns=true`)
693690
}
694691
} catch (e) {
695692
response = e.response || {status: 500}

0 commit comments

Comments
 (0)