From 357cd8862a3398b2284d7208111b23ff549031af Mon Sep 17 00:00:00 2001 From: Remi PLANEL <rplanel@pasteur.fr> Date: Thu, 21 Mar 2024 16:07:13 +0100 Subject: [PATCH] ssr true --- components/content/pdockqMatrix.vue | 6 +++--- nuxt.config.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/content/pdockqMatrix.vue b/components/content/pdockqMatrix.vue index 59db2e22..540fa6b3 100644 --- a/components/content/pdockqMatrix.vue +++ b/components/content/pdockqMatrix.vue @@ -128,12 +128,12 @@ const computedPDocksMatrixPlotOptions = computed(() => { marginBottom, grid: true, - x: { axis: "top", label: "Proteins", tickRotate: 45 }, - y: { label: "Proteins" }, + x: { axis: "top", label: "Protein on x", tickRotate: 45 }, + y: { label: "Proteins on y" }, legend: { label: matrix[0] }, color: { scheme: "plasma", legend: true, reverse: true, domain: [0, 1] }, marks: [ - Plot.frame(), + // Plot.frame(), Plot.cell(toValue(matrix[1]), { x: (d) => d.protX, y: (d) => d.protY, diff --git a/nuxt.config.ts b/nuxt.config.ts index a377488e..7e0d8d3e 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -1,7 +1,7 @@ import { md3 } from 'vuetify/blueprints' // https://v3.nuxtjs.org/api/configuration/nuxt.config export default defineNuxtConfig({ - ssr: false, + ssr: true, modules: [ '@unocss/nuxt', '@nuxt/content', -- GitLab