Skip to content

Commit f6956a2

Browse files
committed
Bug fix on search (issue #25)
1 parent 1efde0a commit f6956a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/src/components/DocumentsAll.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ export default {
791791
const title = doc.title ? doc.title.toString().toLowerCase() : doc.title;
792792
const author = doc.author ? doc.author.toString().toLowerCase() : doc.author;
793793
const doc_identifier = doc.doc_identifier ? doc.doc_identifier.toString().toLowerCase() : doc.doc_identifier;
794-
const number = (doc.number && doc.number.value) ? doc.number.value.toString().toLowerCase() : doc.number.value;
794+
const number = (doc.number && doc.number.value) ? doc.number.value.toString().toLowerCase() : '';
795795
const entry_type = doc.entry_type ? doc.entry_type.toString().toLowerCase() : doc.entry_type;
796796
const compiled_url = doc.compiled_url ? doc.compiled_url.toString().toLowerCase() : doc.compiled_url;
797797
const source_url = doc.source_url ? doc.source_url.toString().toLowerCase() : doc.source_url;

0 commit comments

Comments
 (0)