From 444708c0a672e9c7e5e3c36f0a7d0d64e8493356 Mon Sep 17 00:00:00 2001 From: Tyarel8 <98483313+Tyarel8@users.noreply.github.com> Date: Sun, 24 May 2026 17:32:20 +0200 Subject: [PATCH] Refactor output handling in task log.nu --- modules/background_task/task.nu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/background_task/task.nu b/modules/background_task/task.nu index 1decd2f8..49f52f6f 100644 --- a/modules/background_task/task.nu +++ b/modules/background_task/task.nu @@ -326,9 +326,9 @@ export def log [ ) if $detailed { - $full + $full | move --last status } else { - $full | select id label group Done? status? start? end? + $full | select id label group status } }