Skip to content

Commit a2fdc83

Browse files
committed
make description more accurate for not signed in users
1 parent 8aa219f commit a2fdc83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/library/Library.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</div>
1414
<p v-if="(!searchDescription && !searchQuery && search)" class="text-red-600">Warning: No search option is selected</p>
1515
<!-- the documentations -->
16-
<p v-if="!loggedin" class="m-10 font-mono text-red-600 text-xl text-center font-bold">Warning: you are not signed in. Your documentation will not be saved</p>
16+
<p v-if="!loggedin" class="m-10 font-mono text-red-600 text-xl text-center font-bold">Warning: you are not signed in. Your documentation will not be saved after closing the page</p>
1717
<p v-if="docs.length == 0" class="m-10 font-mono text-blue-900 text-2xl text-center font-bold">Click on add new qeury to create query in library</p>
1818
<p v-if="filteredDocs.length == 0 && docs.length > 0" class="m-10 font-mono text-blue-900 text-2xl text-center font-bold">No result found</p>
1919
<doc @editorOpen="openEditor" v-for="doc in filteredDocs" :key="doc.id" :doc="doc"></doc>

0 commit comments

Comments
 (0)