Skip to content
Snippets Groups Projects

new tentative

Merged Jean CURY requested to merge jcury_fix_cif_path2 into main
All threads resolved!
3 files
+ 8
6
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -6,12 +6,12 @@ import { useNumericalFilter } from "@/composables/useNumericalfilter"
import { ServerDbTable } from "#components"
const sortBy: Ref<SortItem[]> = ref([{ key: 'System_name_ok', order: "asc" }])
const sortBy: Ref<SortItem[]> = ref([{ key: 'System', order: "asc" }])
const itemValue = ref("id");
const facets: Ref<string[]> = ref(["System_name_ok", "subtype", "gene_name", "completed", "prediction_type",])
const facets: Ref<string[]> = ref(["System", "subtype", "gene_name", "completed", "prediction_type",])
const headers: Ref<Object[]> = ref([
{ title: 'Structure', key: 'structure', sortable: false, removable: false },
{ title: "System", key: "System_name_ok", removable: false },
{ title: "System", key: "System", removable: false },
{ title: "Gene name", key: "gene_name", removable: false },
{ title: "Subtype", key: "subtype", removable: false },
// { title: "pdb file", key: "pdb" },
Loading