diff --git a/components/content/pdockqMatrix.vue b/components/content/pdockqMatrix.vue
index eca377cb67c897dc04803ea716ea54fdf90db809..4a2fadde6632feb82a0d61d70c262f7555db5fe6 100644
--- a/components/content/pdockqMatrix.vue
+++ b/components/content/pdockqMatrix.vue
@@ -185,9 +185,8 @@ function displayStructure(item) {
 }
 </script>
 <template>
-
     <v-row class="d-flex align-content-start" :class="mobile ? 'd-flex-column' : 'd-flex-row'">
-        <v-card v-if="computedSystem !== null" v-for="option in computedPDocksMatrixPlotOptions"
+        <v-card v-if="computedSystem !== null && groupedPdocks?.length > 0" v-for="option in computedPDocksMatrixPlotOptions"
             :key="option.legend.label" flat color="transparent">
             <v-card-text>
                 <PlotFigure ref="matrixPlot" :options="unref(option)" defer class="pdockq-plot"
@@ -195,6 +194,8 @@ function displayStructure(item) {
             </v-card-text>
             <PdbeMolstarPlugin v-model="stuctureUrls" v-model:title="structureTitle" />
         </v-card>
-
+        <v-card v-else>
+            <v-alert type="info">No matrix available for this system</v-alert>
+        </v-card>
     </v-row>
 </template>
\ No newline at end of file