diff --git a/README.md b/README.md index 92ab8b7146..a545ffc9e0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Outline Client -![Build and Test](https://github.com/Jigsaw-Code/outline-client/actions/workflows/build_and_test_debug.yml/badge.svg?branch=master) [![Mattermost](https://badgen.net/badge/Mattermost/Outline%20Community/blue)](https://community.internetfreedomfestival.org/community/channels/outline-community) [![Reddit](https://badgen.net/badge/Reddit/r%2Foutlinevpn/orange)](https://www.reddit.com/r/outlinevpn/) +![Build and Test](https://github.com/Jigsaw-Code/outline-client/actions/workflows/build_and_test_debug_client.yml/badge.svg?branch=master) [![Mattermost](https://badgen.net/badge/Mattermost/Outline%20Community/blue)](https://community.internetfreedomfestival.org/community/channels/outline-community) [![Reddit](https://badgen.net/badge/Reddit/r%2Foutlinevpn/orange)](https://www.reddit.com/r/outlinevpn/) > **Test coverage currently only tracks the Apple Libraries and core web view code:** > 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`` )} `; }