Add loading animation for channel list

This commit is contained in:
nymkappa
2022-08-29 22:25:43 +02:00
parent f2377a5f92
commit 90c0ece93f
5 changed files with 32 additions and 6 deletions

View File

@@ -22,7 +22,7 @@ export class NodeComponent implements OnInit {
channelsListStatus: string;
error: Error;
publicKey: string;
channelListLoading = false;
publicKeySize = 99;
constructor(
@@ -97,4 +97,8 @@ export class NodeComponent implements OnInit {
onChannelsListStatusChanged(e) {
this.channelsListStatus = e;
}
onLoadingEvent(e) {
this.channelListLoading = e;
}
}