Skip to content

Commit

Permalink
[#1285] Fix typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fivitti committed Feb 5, 2024
1 parent e434bf2 commit 20f1c3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webui/src/app/machines-page/machines-page.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,12 +253,12 @@ export class MachinesPageComponent implements OnInit, OnDestroy {
*/
loadMachines(event) {
this.dataLoading = true
let text: string = null
let text
if (event.filters?.text?.[0]) {
text = event.filters.text[0].value
}

let app: string = null
let app
if (event.filters?.app?.[0]) {
app = event.filters.app[0].value
}
Expand Down

0 comments on commit 20f1c3b

Please sign in to comment.