fix task run doesn't show name in history tab fixes #1097
This commit is contained in:
@@ -103,10 +103,7 @@ const columns = [
|
||||
{
|
||||
name: "command",
|
||||
label: "Script/Command",
|
||||
field: (row) =>
|
||||
row.type === "script_run" || row.type === "task_run"
|
||||
? row.script_name
|
||||
: row.command,
|
||||
field: (row) => (row.type === "script_run" ? row.script_name : row.command),
|
||||
align: "left",
|
||||
sortable: true,
|
||||
format: (val) => truncateText(val, 30),
|
||||
|
||||
Reference in New Issue
Block a user