diff --git a/src/web/control.js b/src/web/control.js
index 5c4e78d..e4566aa 100644
--- a/src/web/control.js
+++ b/src/web/control.js
@@ -215,7 +215,11 @@ function StreamLine({ id, row: { Label, Source, Title, Link, Notes } }) {
Label
) : (
<>
- {Source} {Title || Link} {Notes}
+ {Source}{' '}
+
+ {Title || Link}
+ {' '}
+ {Notes}
>
)}