1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:23:07 +01:00

fix: fixes logic for extracing swarm ids. fixed #2184 (#2185)

This commit is contained in:
Amir Raminfar
2023-05-10 10:54:41 -07:00
committed by GitHub
parent 1ffa17ef48
commit b7d5229534
3 changed files with 3 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ export class Container {
if (match) {
this.swarmId = match[1];
this.name = name.replace(`.${this.swarmId}`, "");
this.name = name.replace(`${this.swarmId}`, "");
this.isSwarm = true;
}
}