mirror of
https://github.com/louislam/dockge.git
synced 2024-11-24 03:44:03 +00:00
add missing 'stackName' param to return value (#206)
Maybe a mishap, but this was causing issues with opening the correct terminals for each container Co-authored-by: Thales <thcd@cock.li>
This commit is contained in:
parent
06dbc3fa28
commit
71446b9eb9
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ export function getContainerTerminalName(container : string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getContainerExecTerminalName(stackName : string, container : string, index : number) {
|
export function getContainerExecTerminalName(stackName : string, container : string, index : number) {
|
||||||
return "container-exec-" + container + "-" + index;
|
return "container-exec-" + stackName + "-" + container + "-" + index;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function copyYAMLComments(doc : Document, src : Document) {
|
export function copyYAMLComments(doc : Document, src : Document) {
|
||||||
|
|
Loading…
Reference in a new issue