Shares #109

Merged
amigan merged 59 commits from shareUI into trunk 2025-02-14 00:25:03 -05:00
Showing only changes of commit 246c024fc2 - Show all commits

View file

@ -59,7 +59,9 @@ export class TalkgroupService {
} }
setShare(share: Share | null) { setShare(share: Share | null) {
this.fetchAll.next(share); if (!this.authSvc.isAuth() && share !== null) {
this.fetchAll.next(share);
}
} }
ngOnDestroy() { ngOnDestroy() {