ui: outline variant for toggle section in settings

This commit is contained in:
pommee
2025-11-08 13:14:46 +01:00
parent 8846fae40b
commit 2cdf96a66c

View File

@@ -33,6 +33,7 @@ export function LoggingSection({
action={
<ToggleGroup
type="single"
variant="outline"
value={currentLogLevel || "info"}
onValueChange={(value) => {
if (value && onLogLevelChange) {
@@ -54,6 +55,7 @@ export function LoggingSection({
action={
<ToggleGroup
type="single"
variant="outline"
value={String(statisticsRetention || 7)}
onValueChange={(value) => {
if (value && onStatisticsRetentionChange) {