Skip to content

Commit

Permalink
Composer fix #patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig Riley committed May 8, 2024
1 parent 1f3fb29 commit d376535
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog/next.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- **BugFix**: Fixed composer issue
Binary file modified lib/composer.phar
Binary file not shown.
6 changes: 4 additions & 2 deletions src/Views/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
done-text="Found AdminUI ${status.releaseDetails?.version}" />

<x-adminui-installer::step-status key="downloadRelease"
loading-text="Dowloading version ${status.releaseDetails?.version}"
loading-text="Downloading version ${status.releaseDetails?.version}"
done-text="${status.downloadStats}" />

<x-adminui-installer::step-status key="unpackRelease"
Expand Down Expand Up @@ -253,7 +253,9 @@
this.status = result.status;
}
} catch (err) {
this.error = err;
if (typeof err === "string") {
this.error = err;
}
}
setTimeout(() => {
Expand Down

0 comments on commit d376535

Please sign in to comment.