mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 12:17:08 +00:00
Silence console error
This commit is contained in:
@@ -822,7 +822,7 @@ export default {
|
|||||||
|
|
||||||
async getNumLines () {
|
async getNumLines () {
|
||||||
const projectInfo = await this.api([`/project/${this.$route.params.project}`]);
|
const projectInfo = await this.api([`/project/${this.$route.params.project}`]);
|
||||||
this.num_rows = projectInfo.sequences;
|
this.num_rows = projectInfo?.sequences ?? 0;
|
||||||
},
|
},
|
||||||
|
|
||||||
async fetchSequences (opts = {}) {
|
async fetchSequences (opts = {}) {
|
||||||
|
|||||||
Reference in New Issue
Block a user