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

@ -26,7 +26,7 @@ If you're comfortable changing code, you can use any database [supported by RedB
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;
});
}