|
|
@ -32,6 +32,7 @@ export class FilesTabSidebarComponent implements OnInit, OnChanges {
|
|
|
|
|
|
|
|
|
|
|
|
public tagsOfFiles: Tag[] = [];
|
|
|
|
public tagsOfFiles: Tag[] = [];
|
|
|
|
public tags: Tag[] = [];
|
|
|
|
public tags: Tag[] = [];
|
|
|
|
|
|
|
|
public allTags: Tag[] = [];
|
|
|
|
public files: File[] = [];
|
|
|
|
public files: File[] = [];
|
|
|
|
public tagsOfSelection: Tag[] = [];
|
|
|
|
public tagsOfSelection: Tag[] = [];
|
|
|
|
|
|
|
|
|
|
|
@ -43,6 +44,7 @@ export class FilesTabSidebarComponent implements OnInit, OnChanges {
|
|
|
|
});
|
|
|
|
});
|
|
|
|
this.repoService.selectedRepository.subscribe(
|
|
|
|
this.repoService.selectedRepository.subscribe(
|
|
|
|
async (repo) => repo && this.fileSearch && await this.fileSearch.searchForFiles());
|
|
|
|
async (repo) => repo && this.fileSearch && await this.fileSearch.searchForFiles());
|
|
|
|
|
|
|
|
this.tagService.tags.subscribe(t => this.allTags = t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async ngOnInit() {
|
|
|
|
async ngOnInit() {
|
|
|
|