Skip to content

Commit

Permalink
fix: incorrect insert for action_view
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramilito committed Oct 31, 2024
1 parent 2e5fc77 commit ef85806
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/kubectl/resourcebuilder.lua
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ function ResourceBuilder:action_view(definition, data, callback)
break
elseif value ~= "false" and value ~= "" and value ~= nil then
if item.cmd ~= "" then
table.insert(args_tmp, item.cmd .. "=" .. value)
table.insert(args_tmp, item.cmd .. " " .. value)
else
table.insert(args_tmp, value)
end
Expand Down

0 comments on commit ef85806

Please sign in to comment.