feat(ui): add hideFooter setting to hide footer from UI (#6505)

This commit is contained in:
Jack Wotherspoon
2025-08-19 17:06:01 -04:00
committed by GitHub
parent b9cece767d
commit fb5f2987f3
3 changed files with 82 additions and 17 deletions

View File

@@ -86,6 +86,15 @@ export const SETTINGS_SCHEMA = {
description: 'Hide the application banner',
showInDialog: true,
},
hideFooter: {
type: 'boolean',
label: 'Hide Footer',
category: 'UI',
requiresRestart: false,
default: false,
description: 'Hide the footer from the UI',
showInDialog: true,
},
showMemoryUsage: {
type: 'boolean',
label: 'Show Memory Usage',