[polari/backtick-troubles: 2/2] userList: Remove stray spaces from string



commit c4e2468c6783db6d3e04622999bc396f2778448a
Author: Florian Müllner <fmuellner gnome org>
Date:   Wed Oct 3 17:30:44 2018 +0200

    userList: Remove stray spaces from string
    
    Those sneaked in accidentally when moving to backtick strings in
    commit 7fdbaf0020.
    
    https://gitlab.gnome.org/GNOME/polari/merge_requests/72

 src/userList.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/userList.js b/src/userList.js
index 7863772..278fe56 100644
--- a/src/userList.js
+++ b/src/userList.js
@@ -513,7 +513,7 @@ class UserListRow extends Gtk.ListBoxRow {
             let preMatch = this._user.alias.substring(0, filterIndex);
             let theMatch = this._user.alias.substring(filterIndex, filterIndex + this._filter.length);
             let postMatch = this._user.alias.substring(filterIndex + this._filter.length);
-            this._label.label = `${preMatch} <b> ${theMatch} <${'/'}b> ${postMatch}`;
+            this._label.label = `${preMatch}<b>${theMatch}<${'/'}b>${postMatch}`;
         }
     }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]