From 5d2198613bdf9e28fe721102a37b8db2d67bdfd7 Mon Sep 17 00:00:00 2001 From: Drew Ansbacher Date: Mon, 3 Jan 2022 13:09:27 -0700 Subject: [PATCH] no spaces in install link (#1020) Co-authored-by: Drew Ansbacher --- .../marketplace-show/marketplace-show.page.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/app/pages/marketplace-routes/marketplace-show/marketplace-show.page.ts b/ui/src/app/pages/marketplace-routes/marketplace-show/marketplace-show.page.ts index 59f92f6ae..9f26035cd 100644 --- a/ui/src/app/pages/marketplace-routes/marketplace-show/marketplace-show.page.ts +++ b/ui/src/app/pages/marketplace-routes/marketplace-show/marketplace-show.page.ts @@ -191,7 +191,7 @@ export class MarketplaceShowPage { loader.present() try { - await this.embassyApi.installPackage({ id, 'version-spec': version ? ` = ${version}` : undefined }) + await this.embassyApi.installPackage({ id, 'version-spec': version ? `=${version}` : undefined }) } catch (e) { this.errToast.present(e) } finally {