Skip to content

Commit

Permalink
Update download link uri
Browse files Browse the repository at this point in the history
  • Loading branch information
karlomikus committed Sep 10, 2024
1 parent 434a16b commit 18fa73f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,20 @@
## New
- Importing now supports substitute ingredients
- Added shopping list page
- Image uploads now show file paths
- Added "Can be substituted with" and "Is a substitute for" to ingredient details

## Changes
- Removed importing from collection
- Removed importing from yaml
- Removed downloading csv from collections
- Updated cocktail details layout
- Updated ingredient details layout
- Importing no longer automatically converts units

## Fixes
- Fixed wrong volume calculations for multiple servings

# v2.18.0
## New
- Enabled Italian language
Expand Down
2 changes: 1 addition & 1 deletion src/components/Settings/ExportsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default {
this.isLoading = true
BarAssistantClient.generateExportDownloadURL(ex.id).then(resp => {
this.isLoading = false
window.open(resp.data.url, '_blank').focus();
window.open(window.srConfig.API_URL + resp.data.url, '_blank').focus();
}).catch(e => {
this.$toast.error(e.message)
this.isLoading = false
Expand Down

0 comments on commit 18fa73f

Please sign in to comment.