We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3608a0 commit a1ceb5bCopy full SHA for a1ceb5b
client/src/components/apps/form.vue
@@ -2031,8 +2031,10 @@ export default defineComponent({
2031
this.setSSL();
2032
2033
let command = [] as string[];
2034
- if (this.docker.command != '') {
+ if (this.docker.command.length > 0) {
2035
command = this.docker.command.split(' ');
2036
+ } else {
2037
+ command = [];
2038
}
2039
2040
let postdata = {
@@ -2048,7 +2050,7 @@ export default defineComponent({
2048
2050
containerport: this.containerPort,
2049
2051
repository: this.docker.image,
2052
tag: this.docker.tag,
- command: this.docker.command.split(' '),
2053
+ command: command,
2054
fetch: this.buildpack?.fetch,
2055
build: this.buildpack?.build,
2056
run: this.buildpack?.run,
0 commit comments