Fix loading display when no boards exist.

Also, added a link to releases to README.
This commit is contained in:
Matthew Ross 2020-05-28 10:29:30 -04:00
parent 508a7cb622
commit 0c9b1b00d6
2 changed files with 6 additions and 3 deletions

View File

@ -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

View File

@ -150,7 +150,10 @@ export class BoardDisplayComponent implements OnInit, OnDestroy {
if (response.data.length > 1) {
this.updateBoardsList(response.data[1]);
return;
}
this.loading = false;
});
}