Skip to content

Commit

Permalink
feat: hide workspace if no readme.md
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Trovic <luka@nextcloud.com>
  • Loading branch information
luka-nextcloud authored and juliushaertl committed Sep 6, 2023
1 parent a231529 commit 6ed2d08
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/views/RichWorkspace.vue
Expand Up @@ -21,7 +21,10 @@
-->

<template>
<div v-if="enabled" id="rich-workspace" :class="{'focus': focus, 'dark': darkTheme, 'creatable': canCreate }">
<div v-if="enabled"
v-show="file"
id="rich-workspace"
:class="{'focus': focus, 'dark': darkTheme, 'creatable': canCreate }">
<SkeletonLoading v-if="!loaded || !ready" />
<Editor v-if="file"
v-show="ready"
Expand Down

0 comments on commit 6ed2d08

Please sign in to comment.