Skip to content

Commit

Permalink
PATCH: fix xlsx download extension
Browse files Browse the repository at this point in the history
  • Loading branch information
Amoki committed Sep 1, 2023
1 parent b0a7b7a commit 95bee28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
node-version: '18'

- run: npm install -g npm@latest
- run: npm install -g npm@9
- run: npm ci

- name: Release
Expand Down
2 changes: 1 addition & 1 deletion src/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function createService(apiClient, { fetchUsers }) {
undefined,
topics.map((t) => t.guid).join(",")
);
downloadBlobAs(`${project.name}.bcf`, response);
downloadBlobAs(`${project.name}.xlsx`, response);
};

// --- BCF Topic Viewpoints API ---
Expand Down

0 comments on commit 95bee28

Please sign in to comment.