diff --git a/src/www/views/servers_view/server_list/index.ts b/src/www/views/servers_view/server_list/index.ts index ecd8496c9e..4f7523b2e0 100644 --- a/src/www/views/servers_view/server_list/index.ts +++ b/src/www/views/servers_view/server_list/index.ts @@ -31,6 +31,7 @@ export class ServerList extends LitElement { width: 100%; } + /* TODO(daniellacosse): Remove the hard-coded heights. */ server-row-card { margin: 0 auto 8px auto; height: 130px; @@ -47,11 +48,11 @@ export class ServerList extends LitElement { render() { if (this.hasSingleServer) { - return html` `; + return html``; } else { return html` ${this.servers.map( - server => html`` + server => html`` )} `; }