Skip to content

Commit

Permalink
fix editor with lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pablomendezroyo committed Nov 11, 2024
1 parent 638f576 commit 2d3b7db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/dockerCompose/src/editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ export class ComposeServiceEditor {
*/
removeDns(): void {
const service = this.get();
if ('dns' in service) {
if ("dns" in service) {
delete service.dns;
}
}
}

removeNetworkAliases(networkName: string, aliasesToRemove: string[], serviceNetwork: ComposeServiceNetwork): void {
this.edit((service) => {
Expand Down

0 comments on commit 2d3b7db

Please sign in to comment.