mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
feat(container-creation): allow escaped quotes in command field (#2419)
This commit is contained in:
parent
807c830db0
commit
55b50c2a49
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ angular.module('portainer.docker')
|
|||
var helper = {};
|
||||
|
||||
helper.commandStringToArray = function(command) {
|
||||
return splitargs(command);
|
||||
return splitargs(command, undefined, true);
|
||||
};
|
||||
|
||||
helper.commandArrayToString = function(array) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue