We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
config
1 parent 8edd3b8 commit fdc143cCopy full SHA for fdc143c
Sources/AppBundle/command/query/ConfigCommand.swift
@@ -143,7 +143,7 @@ extension ConfigMapValue {
143
func buildConfigMap() -> ConfigMapValue {
144
let mode = config.modes.mapValues { (mode: Mode) -> ConfigMapValue in
145
let binding: [String: ConfigMapValue] = mode.bindings.mapValues { binding in
146
- .array(binding.commands.map { .scalar(.string($0.args.description)) })
+ .scalar(.string(binding.commands.map { $0.args.description }.joined(separator: "; ")))
147
}
148
return .map(["binding": .map(binding)])
149
0 commit comments