diff --git a/config/config.json b/config/config.json index f1f3ba22c8..86b27beb8f 100644 --- a/config/config.json +++ b/config/config.json @@ -10,7 +10,7 @@ "ServiceSettings": { "SiteName": "Mattermost", "Mode" : "dev", - "AllowTesting" : false, + "AllowTesting" : true, "UseSSL": false, "Port": "8065", "Version": "developer", diff --git a/web/react/components/command_list.jsx b/web/react/components/command_list.jsx index 5efe98dc6d..8f8f9d08dd 100644 --- a/web/react/components/command_list.jsx +++ b/web/react/components/command_list.jsx @@ -44,19 +44,21 @@ module.exports = React.createClass({ var suggestions = []; + console.log(this.state.suggestions.length); + for (var i = 0; i < this.state.suggestions.length; i++) { if (this.state.suggestions[i].suggestion != this.state.cmd) { suggestions.push(
-
{ this.state.suggestions[i].suggestion }
-
{ this.state.suggestions[i].description }
+
{ this.state.suggestions[i].suggestion }
+
{ this.state.suggestions[i].description }
); } } return ( -
+
{ suggestions }
); diff --git a/web/sass-files/sass/partials/_command-box.scss b/web/sass-files/sass/partials/_command-box.scss index 44eb9b8df7..565296fae8 100644 --- a/web/sass-files/sass/partials/_command-box.scss +++ b/web/sass-files/sass/partials/_command-box.scss @@ -4,20 +4,30 @@ width: 100%; border: $border-gray; bottom: 38px; + overflow: auto; @extend %popover-box-shadow; + .sidebar--right & { + bottom: 100px; + } } .command-name { position: relative; width: 100%; background-color: #fff; - height: 37px; - line-height: 37px; - padding: 2px 10px 2px 5px; + line-height: 24px; + padding: 5px 10px 8px; z-index: 101; + font-size: 0.95em; + border-bottom: 1px solid #ddd; &:hover { background-color: #e8eaed; } + .command__desc { + margin-left: 5px; + color: #999; + line-height: normal; + } } .command-desc {