Remove unneeded parentheses

mine
Joscha Alisch 2020-02-04 22:11:11 +01:00
parent f4511079b9
commit 8ab0aea7b4
No known key found for this signature in database
GPG Key ID: 5CD84D89434B6CB5
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ func (b *Browser) defaultContext() context.Context {
ctx = context.WithValue(ctx, internal.KeyLabels, ui.TrimLabelSelector(b.SearchBuff().String()))
}
ctx = context.WithValue(ctx, internal.KeyFields, "")
ctx = context.WithValue(ctx, internal.KeyNamespace, client.CleanseNamespace((b.App().Config.ActiveNamespace())))
ctx = context.WithValue(ctx, internal.KeyNamespace, client.CleanseNamespace(b.App().Config.ActiveNamespace()))
return ctx
}