From 9294b2d01fa626da40bb9d3e551e0a907c9a318f Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Tue, 22 Jun 2021 04:50:11 +0200 Subject: [PATCH] [enh] add caption to app catalog --- src/yunohost/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/yunohost/app.py b/src/yunohost/app.py index ef5de554b..ccaaf0e08 100644 --- a/src/yunohost/app.py +++ b/src/yunohost/app.py @@ -140,6 +140,7 @@ def app_catalog(full=False, with_categories=False): title="Available applications catalog", columns=[{"key": TableForDict.key, "header": "Application id"}, "description", "level"], row_function=colorize_row_from_levels, + caption="you can filter this list using 'yunohost app search'", ) else: return {"apps": catalog["apps"], "categories": catalog["categories"]}