frontend: specific tooltip for download-zip when items are selected

Massimo Melina committed Dec 27, 2022 at 16:37 UTC e595d72d1e8e478a12b8c11445633c1506fe08b4
1 file changed +2 -1
frontend/src/menu.ts
+2 -1
@@ -50,7 +50,8 @@ export function MenuPanel() {
50 h(MenuLink, {
51 icon: 'archive',
52 label: "Download zip",
53 - tooltip: "Download whole list (unfiltered) as a single zip file. If you select some elements, only those will be downloaded.",
53 + tooltip: list ? "Download selected elements as a single zip file"
54 + : "Download whole list (unfiltered) as a single zip file. If you select some elements, only those will be downloaded.",
55 href: '?'+String(new URLSearchParams(_.pickBy({
56 get: 'zip',
57 search: remoteSearch,