Skip to content

Commit

Permalink
fix(software): fix software page not working with password prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
ravenclaw900 committed Mar 20, 2022
1 parent d074ca1 commit d592538
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/frontend/src/pages/Software.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
// Runs once data is received or table is changed
$: socketData.uninstalled && installTempCreate();
$: (installTable == true || installTable == false) &&
$: socketData.uninstalled &&
installTable != undefined &&
((needInstallTemp = true), installTempCreate());
// Runs every time installTemp array is changed
Expand Down

0 comments on commit d592538

Please sign in to comment.