Skip to content

Commit

Permalink
fix: test tab not working with database storage
Browse files Browse the repository at this point in the history
  • Loading branch information
jacodg committed Oct 9, 2024
1 parent d8a8dd8 commit 44744b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/test/test-reports.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class TestReportsService {
private testReportsSubject: ReplaySubject<TestListItem[]> = new ReplaySubject<TestListItem[]>(1);
testReports$: Observable<TestListItem[]> = this.testReportsSubject.asObservable();
private firstApiCall: boolean = true;
metadataNames: string[] = ['storageId', 'name', 'path', 'description', 'variables'];
metadataNames: string[] = ['storageId', 'name', 'path', 'description'];
storageName: string = 'Test';

constructor(
Expand Down

0 comments on commit 44744b1

Please sign in to comment.