diff --git a/.github/DISCUSSION_TEMPLATE/support.yml b/.github/DISCUSSION_TEMPLATE/support.yml index 2493df229..8b68f69e9 100644 --- a/.github/DISCUSSION_TEMPLATE/support.yml +++ b/.github/DISCUSSION_TEMPLATE/support.yml @@ -54,3 +54,11 @@ body: description: Please include output from your [troubleshooting tests](https://gethomepage.dev/more/troubleshooting/#service-widget-errors), if relevant. validations: required: true + - type: markdown + attributes: + value: | + ## ⚠️ STOP ⚠️ + + Before you submit this support request, please ensure you have entered your configuration files and actually followed the steps from the troubleshooting guide linked above, if relevant. The troubleshooting steps often help to solve the problem. + + *Please remember that this project is maintained by regular people **just like you**, so if you don't take the time to fill out the requested information, don't expect a reply back.* diff --git a/docs/configs/settings.md b/docs/configs/settings.md index 5fe30874f..5a32c139f 100644 --- a/docs/configs/settings.md +++ b/docs/configs/settings.md @@ -13,6 +13,14 @@ You can customize the title of the page if you'd like. title: My Awesome Homepage ``` +## Description + +You can customize the description of the page if you'd like. + +```yaml +description: A description of my awesome homepage +``` + ## Start URL You can customize the start_url as required for installable apps. The default is "/". diff --git a/docs/widgets/services/beszel.md b/docs/widgets/services/beszel.md index c53915689..99715191b 100644 --- a/docs/widgets/services/beszel.md +++ b/docs/widgets/services/beszel.md @@ -7,7 +7,7 @@ Learn more about [Beszel](https://github.com/henrygd/beszel) The widget has two modes, a single system with detailed info if `systemId` is provided, or an overview of all systems if `systemId` is not provided. -The `systemID` in the `id` field on the collections page of Beszel. +The `systemID` is the `id` field on the collections page of Beszel under the PocketBase admin panel. You can also use the 'nice name' from the Beszel UI. Allowed fields for 'overview' mode: `["systems", "up"]` Allowed fields for a single system: `["name", "status", "updated", "cpu", "memory", "disk", "network"]` diff --git a/public/locales/en/common.json b/public/locales/en/common.json index e3670e806..1d7380894 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -982,6 +982,9 @@ "name": "Name", "systems": "Systems", "up": "Up", + "down": "Down", + "paused": "Paused", + "pending": "Pending", "status": "Status", "updated": "Updated", "cpu": "CPU", diff --git a/src/components/bookmarks/group.jsx b/src/components/bookmarks/group.jsx index 9deb1b6a2..b90ac8db1 100644 --- a/src/components/bookmarks/group.jsx +++ b/src/components/bookmarks/group.jsx @@ -24,9 +24,9 @@ export default function BookmarksGroup({
diff --git a/src/components/bookmarks/list.jsx b/src/components/bookmarks/list.jsx index 194bb43af..8f41afdfa 100644 --- a/src/components/bookmarks/list.jsx +++ b/src/components/bookmarks/list.jsx @@ -5,15 +5,14 @@ import { columnMap } from "../../utils/layout/columns"; import Item from "components/bookmarks/item"; export default function List({ bookmarks, layout, bookmarksStyle }) { - let classes = - layout?.style === "row" ? `grid ${columnMap[layout?.columns]} gap-x-2` : "flex flex-col mt-3 bookmark-list"; + let classes = layout?.style === "row" ? `grid ${columnMap[layout?.columns]} gap-x-2` : "flex flex-col bookmark-list"; const style = {}; if (layout?.iconsOnly || bookmarksStyle === "icons") { - classes = "grid gap-3 mt-3 bookmark-list"; + classes = "grid gap-2 bookmark-list"; style.gridTemplateColumns = "repeat(auto-fill, minmax(60px, 1fr))"; } return ( -