mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-04 14:29:45 +00:00
Bugfix/protocol consistency (#846)
* fix eos <-> registry protocol * fix ui <-> eos protocol * redoes the embassyd api to accept an optional version spec argument, still allowing for CLI @ syntax * redo the front end in accordance with the new api * Update appmgr/src/install/mod.rs Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> * fix more query params Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com>
This commit is contained in:
committed by
Aiden McClelland
parent
198635da50
commit
aea5dfe04a
@@ -59,7 +59,7 @@ export class WizardBaker {
|
||||
action,
|
||||
verb: 'beginning update for',
|
||||
title,
|
||||
executeAction: () => this.embassyApi.installPackage({ id, version }),
|
||||
executeAction: () => this.embassyApi.installPackage({ id, 'version-spec': version ? `=${version}` : undefined }),
|
||||
},
|
||||
},
|
||||
bottomBar: {
|
||||
@@ -158,7 +158,7 @@ export class WizardBaker {
|
||||
action,
|
||||
verb: 'beginning downgrade for',
|
||||
title,
|
||||
executeAction: () => this.embassyApi.installPackage({ id, version }),
|
||||
executeAction: () => this.embassyApi.installPackage({ id, 'version-spec': version ? `=${version}` : undefined }),
|
||||
},
|
||||
},
|
||||
bottomBar: {
|
||||
|
||||
Reference in New Issue
Block a user