From 03c16b6afb22fd0d2dbe94d0f2b54190879ff49f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?netop=3A//=E3=82=A6=E3=82=A8=E3=83=8F?= <1288356+NetOperatorWibby@users.noreply.github.com> Date: Fri, 10 Sep 2021 03:48:46 -0700 Subject: [PATCH] Replace three dots with ellipsis (#392) --- app/utils/ellipsify.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/ellipsify.js b/app/utils/ellipsify.js index f5b4a7dcd..734d8aef3 100644 --- a/app/utils/ellipsify.js +++ b/app/utils/ellipsify.js @@ -3,5 +3,5 @@ export default function ellipsify(str, len=8) { return str; } - return str.substr(0, len) + '...' + str.substr(str.length - len); + return str.substr(0, len) + '…' + str.substr(str.length - len); }