diff --git a/README.md b/README.md index 11e13ad..e1bea21 100644 --- a/README.md +++ b/README.md @@ -18,15 +18,15 @@ functional and minimal application for keeping track of tasks. A web server running PHP 7.x with sqlite enabled (it may work on PHP 5.6, but is not supported). See [PHP Supported Versions](https://www.php.net/supported-versions.php). -The server must have `sqlite3` and `php7-sqlite` installed. -**- OR -** +The server must have `sqlite3` and `php7-sqlite` installed. +**- OR -** If you're comfortable changing code, you can use any database [supported by RedBeanPHP](https://redbeanphp.com/index.php?p=/connection). ### Install Installing TaskBoard is as easy as 1, 2, 3! -1. Download [the latest release](#) since v1.0.0 +1. Download [the latest release](https://github.com/kiswa/TaskBoard/releases) since v1.0.0 2. Extract it to your webserver 3. Verify the `api` directory is writable diff --git a/src/app/board/board.component.ts b/src/app/board/board.component.ts index 940f274..b2ad724 100644 --- a/src/app/board/board.component.ts +++ b/src/app/board/board.component.ts @@ -150,7 +150,10 @@ export class BoardDisplayComponent implements OnInit, OnDestroy { if (response.data.length > 1) { this.updateBoardsList(response.data[1]); + return; } + + this.loading = false; }); }