Skip to content

Commit

Permalink
fix: bug (#5310)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlhiter authored Dec 25, 2024
1 parent aaecf4d commit 0d81eea
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ const AppSelectModal = ({

const handleUpdate = useCallback(
(item: AppListItemType) => {
const tempFormData = { appName: item.name, imageName: deployData.imageName }
const tempFormData = {
appName: item.name,
imageName: deployData.imageName,
labels: deployData.labels
}
const tempFormDataStr = encodeURIComponent(JSON.stringify(tempFormData))
sealosApp.runEvents('openDesktopApp', {
appKey: 'system-applaunchpad',
Expand Down

0 comments on commit 0d81eea

Please sign in to comment.