mirror of https://github.com/folke/lazy.nvim.git
fix(ui): diagnostics without status
This commit is contained in:
parent
a0a51c06c2
commit
249902ab31
|
@ -71,7 +71,8 @@ end
|
||||||
|
|
||||||
function Task:status()
|
function Task:status()
|
||||||
local ret = self._log[#self._log]
|
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
|
end
|
||||||
|
|
||||||
function Task:has_started()
|
function Task:has_started()
|
||||||
|
|
Loading…
Reference in New Issue