Browse Source

Fix missing loading indicator in benchmark component

pull/7634/head
Thomas Kaul 2 weeks ago
parent
commit
efef3e1163
  1. 2
      apps/client/src/app/components/markets/markets.component.ts

2
apps/client/src/app/components/markets/markets.component.ts

@ -43,7 +43,7 @@ import { DeviceDetectorService } from 'ngx-device-detector';
templateUrl: './markets.html'
})
export class GfMarketsComponent implements OnInit {
protected readonly benchmarks = signal<Benchmark[]>([]);
protected readonly benchmarks = signal<Benchmark[] | undefined>(undefined);
protected readonly deviceType = computed(
() => this.deviceDetectorService.deviceInfo().deviceType

Loading…
Cancel
Save