We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c01a05d commit 3632a09Copy full SHA for 3632a09
cmd/run.go
@@ -219,13 +219,13 @@ var runCmd = &cobra.Command{
219
TimeFormat: config.If[string](
220
config.Exists[string, string](config.TimeFormats, cfg.TimeFormat),
221
config.TimeFormats[cfg.TimeFormat],
222
- config.DefaultTimeFormat,
+ config.TimeFormats[config.DefaultTimeFormat],
223
),
224
ConsoleTimeFormat: config.If[string](
225
config.Exists[string, string](
226
config.ConsoleTimeFormats, cfg.ConsoleTimeFormat),
227
config.ConsoleTimeFormats[cfg.ConsoleTimeFormat],
228
- config.DefaultConsoleTimeFormat,
+ config.ConsoleTimeFormats[config.DefaultConsoleTimeFormat],
229
230
NoColor: cfg.NoColor,
231
FileName: cfg.FileName,
0 commit comments