diff --git a/src/views/LibraryView.vue b/src/views/LibraryView.vue index 167f5e1..aab8b33 100644 --- a/src/views/LibraryView.vue +++ b/src/views/LibraryView.vue @@ -61,7 +61,7 @@
{{ statusText }}
-
+
{{ isVideo(f) ? 'VIDEO' : (isPhoto(f) ? 'PHOTO' : 'DOC') }}
@@ -70,7 +70,7 @@ {{ getFileExt(f.file_name) }}
-
+
{{ f.file_name }}
diff --git a/src/views/SearchView.vue b/src/views/SearchView.vue index 66840eb..e7f0885 100644 --- a/src/views/SearchView.vue +++ b/src/views/SearchView.vue @@ -58,7 +58,9 @@ import VideoPlayer from '../components/VideoPlayer.vue' const modes = [ { label: 'Keyword', value: 'keyword' }, - { label: 'Semantic', value: 'semantic' } + { label: 'Semantic', value: 'semantic' }, + { label: 'People', value: 'people' }, + { label: 'Agent', value: 'agent' } ] const mode = ref('semantic')