瀏覽代碼

Removed unnecessary string wrapping (#3490)

* Removed unnecessary string wrapping
master
Lars Spaenij 7 年之前
父節點
當前提交
dc90800e50
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      react/features/display-name/components/DisplayName.web.js

+ 1
- 1
react/features/display-name/components/DisplayName.web.js 查看文件

@@ -151,7 +151,7 @@ class DisplayName extends Component {
151 151
                 className = 'displayname'
152 152
                 id = { elementID }
153 153
                 onClick = { this._onStartEditing }>
154
-                { `${appendSuffix(displayName, displayNameSuffix)}` }
154
+                { appendSuffix(displayName, displayNameSuffix) }
155 155
             </span>
156 156
         );
157 157
     }

Loading…
取消
儲存