We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 681bc8f commit 97a129dCopy full SHA for 97a129d
1 file changed
src/app/shared/search/search-charts/search-charts.component.ts
@@ -74,19 +74,18 @@ export class SearchChartsComponent implements OnInit {
74
*/
75
chartsVisibilityList$: Observable<boolean[]> = of([true]);
76
77
+ /**
78
+ * Prop that provides the boolean value for an existing valid chart (true if at least one valid chart is found)
79
+ */
80
+ hasValidCharts = false;
81
+
82
/**
83
*
84
* @param cdr
85
* @param searchService
86
* @param platformId
87
* @param searchConfigService
88
-
- /**
- * Prop that provides the boolean value for an existing valid chart (true if at least one valid chart is found)
- */
- hasValidCharts = false;
89
90
constructor(
91
private cdr: ChangeDetectorRef,
92
private searchService: SearchService,
0 commit comments