Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
sboivinsystra committed Nov 7, 2023
1 parent 8931e7d commit de8d5a7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/build.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/build.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Network Editor",
"author": "Simon Fortin <[email protected]>; Simon Boivin <[email protected]>",
"license": "MIT",
"version": "4.10.2",
"version": "4.10.3",
"private": true,
"scripts": {
"clean": "rm -rf dist && rm -f src/config.js",
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/ScenariosExplorer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export default {
try {
if (this.selectedScenario) {
// this is a copy
await s3.copyFolder(this.localModel, this.selectedScenario, this.input)
await s3.copyFolder(this.localModel, this.selectedScenario + '/', this.input)
this.$store.commit('changeNotification',
{ text: $gettext('Scenario successfully copied'), autoClose: true, color: 'success' })
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/store/od.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default {
})
// add all default attributes
const defaultAttributes = [
'index', ' name']
'index', 'name']
defaultAttributes.forEach(att => header.add(att))
state.layerAttributes = Array.from(header)
state.selectedFilter = state.layerAttributes[0]
Expand Down

0 comments on commit de8d5a7

Please sign in to comment.