fix(ui): only show plugins to clean under clean

This commit is contained in:
Folke Lemaitre 2022-12-30 21:23:12 +01:00
parent a834b30c70
commit 45d669f61c
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ return {
}, },
{ {
filter = function(plugin) filter = function(plugin)
return plugin._.installed and not plugin.url return plugin._.kind == "clean" and plugin._.installed
end, end,
title = "Clean", title = "Clean",
}, },