From 28ca9a17a9dd5ba0b22bf18f6947fea6bc387199 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Mon, 27 Apr 2026 10:07:08 +0200 Subject: [PATCH] fix(FluxNote): stop skeleton showing when repo is inaccessible The skeleton was conditioned on `isLoading || !hasContent`, so it persisted forever when readme resolved to null (e.g. private repo visited while logged out). Skeleton now only shows while loading. --- src/components/FluxNote.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/FluxNote.vue b/src/components/FluxNote.vue index 2ddf7bc..e7d8e49 100644 --- a/src/components/FluxNote.vue +++ b/src/components/FluxNote.vue @@ -101,9 +101,9 @@ onUnmounted(() => { - +