You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<divv-for="faq in faqs":key="faq.question"class="mt-5">
6
+
<v-text-field
7
+
append-icon="mdi-magnify"
8
+
class="mt-2 mb-4"
9
+
v-model="searchQuery"
10
+
label="Search questions..."/>
11
+
<divv-for="faq in filteredFaqs":key="faq.question"class="mt-5">
7
12
<v-cardclass="mb-5 mr-5"rounded>
8
13
<v-card-title
9
14
style="cursor: pointer"
@@ -24,6 +29,9 @@
24
29
</v-expand-transition>
25
30
</v-card>
26
31
</div>
32
+
<divv-if="filteredFaqs.length === 0">
33
+
<h2>No FAQs found for your search query</h2>
34
+
</div>
27
35
</v-col>
28
36
</v-row>
29
37
<v-rowjustify="center"align="center">
@@ -49,7 +57,8 @@
49
57
exportdefault {
50
58
name:'DownloadPage',
51
59
data() {
52
-
return {
60
+
constret= {
61
+
searchQuery:'',
53
62
faqs: [
54
63
{
55
64
question:'Which browsers are supported by floccus?',
@@ -130,7 +139,7 @@ If you are missing some toplevel folders on a browser, try setting a different l
130
139
After two hours of trying floccus should override the lock and finally start syncing again. If this doesn't happen for you, please have a look at the issues section on the floccus github repository and perhaps file a new issue there.`,
131
140
},
132
141
{
133
-
question:"I'm seeing 'Failed to map parentId' errors. What can I do?",
142
+
question:"I'm seeing 'Failed to map parentId' errors. What can I do?",
134
143
answer:`This error indicates that something went wrong during the sync. The developers are aware of these errors and are working on fixing all instances of them. In the meantime you can try to trigger a sync from scratch in the settings of the profile that errored. Make sure you have a backup of your bookmarks before you do this, and check your bookmarks for deleted bookmarks that may have come back. You can be sure that nothing will be deleted in this step, though.`,
135
144
},
136
145
{
@@ -143,6 +152,18 @@ After two hours of trying floccus should override the lock and finally start syn
0 commit comments