diff --git a/app/components/dual_link_to/index.js b/app/components/dual_link_to/index.js
index 606b26ee588667a5f2816e0c547789c838f65517..1843cc7026cf22d0b58bb59d7ec6709e0cd05ebf 100644
--- a/app/components/dual_link_to/index.js
+++ b/app/components/dual_link_to/index.js
@@ -85,7 +85,14 @@ export default class DualLinkToComponent extends Component {
   }
 
   get title() {
-    return this.args.title || this.args.node.get('title');
+    let ret;
+
+    ret = this.args.title || this.args.node.get('title');
+    if (ret.length > 16) {
+      return `${ret.substring(0, 16)}...`;
+    }
+
+    return ret;
   }
 
   get query() {