From cdb5af0e285e4e80f4bc3e5bf18af93694089470 Mon Sep 17 00:00:00 2001 From: Remi PLANEL <rplanel@pasteur.fr> Date: Fri, 12 Apr 2024 14:18:39 +0200 Subject: [PATCH] clean --- components/content/PdbeMolstarPlugin.vue | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/components/content/PdbeMolstarPlugin.vue b/components/content/PdbeMolstarPlugin.vue index 498039a8..859e03f2 100644 --- a/components/content/PdbeMolstarPlugin.vue +++ b/components/content/PdbeMolstarPlugin.vue @@ -30,19 +30,6 @@ useHead({ ] }) -export interface Props { - height?: number - // dataUrls?: MaybeRef<string[] | undefined> - format?: "pdb" | "cif" -} - -const props = withDefaults(defineProps<Props>(), { - height: 600, - format: 'pdb', - // dataUrls: undefined -}) - -const dataUrls = defineModel() const title = defineModel('title') const pdbeMolstarComponent = ref(null) @@ -82,7 +69,6 @@ function viewPdb(pdbPath: string | null) { function closeStructure() { selectedPdb.value = null - // dataUrls.value = undefined structureBasket.set(undefined) dialog.value = false } -- GitLab