Skip to content

Commit

Permalink
Make namespaces more tolerant
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Nov 3, 2023
1 parent eb0ed11 commit 4293e9e
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 @@ -39,7 +39,7 @@ export default {
process: null,
processUrl: 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 4293e9e

Please sign in to comment.