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
1 change: 1 addition & 0 deletions build/dsh-desktop.patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
# The desktop shell has the real lifecycle authority, so keep that behavior off
# whenever the optional plugin is present in the composed profile.
- id: dsh-market
inject: [desktopProfiles]
config:
profile: web
allowRestart: false
4 changes: 2 additions & 2 deletions packages/dsh-desktop-market-installer/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ window.__ModuleLoader__.load({
setStatus((current) => ({
...current,
phase: 'installing',
recommendedVersion: current?.recommendedVersion || '1.15.0'
recommendedVersion: current?.recommendedVersion || 'latest'
}))
try {
const response = await fetch(INSTALL_PATH, {
Expand Down Expand Up @@ -539,7 +539,7 @@ window.__ModuleLoader__.load({
const busy = phase === 'installing'
const installed = phase === 'installed'
const failed = phase === 'error' || phase === 'incomplete' || Boolean(error)
const version = status?.recommendedVersion || '1.15.0'
const version = status?.recommendedVersion || 'latest'

return React.createElement(
'section',
Expand Down
Loading
Loading