Skip to content

Commit

Permalink
add missing 'stackName' param to return value
Browse files Browse the repository at this point in the history
Maybe a mishap, but this was causing issues with opening the correct terminals for each container
  • Loading branch information
Thales committed Nov 28, 2023
1 parent 06dbc3f commit fff24d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/util-common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export function getContainerTerminalName(container : string) {
}

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) {
Expand Down

0 comments on commit fff24d0

Please sign in to comment.