Skip to content

Commit baa5a5d

Browse files
author
Vitoriox
committed
Issue #17
Used pipe character ("|") to space out excerpt arrays
1 parent 2de3190 commit baa5a5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/components/MetadataCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ export default {
354354
let str = ''
355355
if(Array.isArray(excerpt)){
356356
for(let i=0; i<excerpt.length; i++){
357-
str += this.excerptToString(excerpt[i]) + '\n'
357+
str += this.excerptToString(excerpt[i]) + ' | '
358358
}
359359
}
360360
else if(typeof excerpt === 'object'){

0 commit comments

Comments
 (0)