Skip to content

Commit

Permalink
probs better than just "profile"
Browse files Browse the repository at this point in the history
  • Loading branch information
Zer0-bit committed Aug 15, 2023
1 parent e740f07 commit 2ceb872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webserver/web-interface/src/pages/Profiles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ function downloadProfileJson(profile: Profile) {

const a = document.createElement('a');
a.href = url;
a.download = 'profile.json';
a.download = `${profile.name}.json`;
a.click();

URL.revokeObjectURL(url);
Expand Down

0 comments on commit 2ceb872

Please sign in to comment.