From 4bfb0964fecedae204d2b71a379177e7e04fd165 Mon Sep 17 00:00:00 2001 From: Richard Knoll Date: Tue, 20 Jan 2026 18:37:44 +0000 Subject: [PATCH] fix description save when sharing a project --- webapp/src/app.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/webapp/src/app.tsx b/webapp/src/app.tsx index f85e891c6976..9e549bebe3c9 100644 --- a/webapp/src/app.tsx +++ b/webapp/src/app.tsx @@ -4608,6 +4608,7 @@ export class ProjectView let f = pkg.mainEditorPkg().lookupFile("this/" + pxt.CONFIG_NAME); let config = JSON.parse(f.content) as pxt.PackageConfig; config.name = name; + config.description = description || config.description; return f.setContentAsync(pxt.Package.stringifyConfig(config)) .then(() => { if (this.state.header)