Skip to content

Commit

Permalink
Merge pull request #4771 from nextcloud/feature/hide-rich-workspace-i…
Browse files Browse the repository at this point in the history
…f-no-readme
  • Loading branch information
juliushaertl committed Sep 6, 2023
2 parents 33f004e + 6ed2d08 commit 0730362
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 0730362

Please sign in to comment.