Skip to content

Commit

Permalink
Merge branch 'Open-EO:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr authored Nov 4, 2023
2 parents f2f28c9 + 4293e9e commit 5b202e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/wizards/UDP.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default {
noProcessSelection: false,
process: null,
processSpec: null,
processNamespace: 'user',
processNamespace: null,
args: {},
jobTitle: "",
mode: "",
Expand Down
4 changes: 2 additions & 2 deletions src/components/wizards/tabs/ChooseUserDefinedProcess.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default {
},
namespace: {
type: String,
default: 'user'
default: null
},
url: {
type: String,
Expand All @@ -48,7 +48,7 @@ export default {
computed: {
...Utils.mapGetters(['processes']),
filteredProcesses() {
return this.processes.namespace(this.namespace);
return this.processes.namespace(this.namespace || 'user');
}
},
methods: {
Expand Down

0 comments on commit 5b202e0

Please sign in to comment.