8000 #1016, #1274 Aligned the "Save your sketch" dialog behavior by kittaakos · Pull Request #1351 · arduino/arduino-ide · GitHub
[go: up one dir, main page]

Skip to content

#1016, #1274 Aligned the "Save your sketch" dialog behavior #1351

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Aug 26, 2022
Prev Previous commit
Next Next commit
removed space from discovery json log.
Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
  • Loading branch information
Akos Kitta committed Aug 26, 2022
commit 80cbb5cd2b6442fa0ac76ab156e4d2a494cd834f
2 changes: 1 addition & 1 deletion arduino-ide-extension/src/node/board-discovery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export class BoardDiscovery
} else {
throw new Error(`Unhandled object type: ${arg}`);
}
return JSON.stringify(object, null, 2); // TODO: remove `space`?
return JSON.stringify(object);
}

async start(): Promise<void> {
Expand Down
0