mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-04 15:07:34 +00:00
fix(ui): diagnostics without status
This commit is contained in:
parent
a0a51c06c2
commit
249902ab31
1 changed files with 2 additions and 1 deletions
|
@ -71,7 +71,8 @@ end
|
|||
|
||||
function Task:status()
|
||||
local ret = self._log[#self._log]
|
||||
return ret and ret.msg or ""
|
||||
local msg = ret and vim.trim(ret.msg) or ""
|
||||
return msg ~= "" and msg or nil
|
||||
end
|
||||
|
||||
function Task:has_started()
|
||||
|
|
Loading…
Add table
Reference in a new issue