Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion service/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ build-iPhoneSimulator/
# for a library or gem, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# Gemfile.lock
.ruby-version
# .ruby-version
# .ruby-gemset

# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
Expand Down
5 changes: 0 additions & 5 deletions web/package/agama-web-ui.changes
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
-------------------------------------------------------------------
Mon Aug 19 11:54:07 UTC 2024 - Josef Reidinger <jreidinger@suse.com>

- Fix early finish of installation (gh#openSUSE/agama#1544)

-------------------------------------------------------------------
Tue Aug 13 14:57:21 UTC 2024 - David Diaz <dgonzalez@suse.com>

Expand Down
48 changes: 0 additions & 48 deletions web/src/api/status.test.ts

This file was deleted.

4 changes: 2 additions & 2 deletions web/src/api/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import { InstallerStatus } from "~/types/status";
* Returns the installer status information
*/
const fetchInstallerStatus = async (): Promise<InstallerStatus> => {
const { phase, busy, iguana, canInstall } = await get("/api/manager/installer");
return { phase, isBusy: busy.length !== 0, useIguana: iguana, canInstall };
const { phase, isBusy, useIguana, canInstall } = await get("/api/manager/installer");
return { phase, isBusy, useIguana, canInstall };
};

export { fetchInstallerStatus };