From 890da002eb9351acf009c6dd6f5e38905c6e2a25 Mon Sep 17 00:00:00 2001 From: retrozinndev Date: Mon, 14 Apr 2025 18:34:23 -0300 Subject: [PATCH] :sparkles: ags(control-center/tile): add property to enable tile when clicking on the more button --- ags/widget/control-center/tiles/Tile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ags/widget/control-center/tiles/Tile.ts b/ags/widget/control-center/tiles/Tile.ts index f36d334..8c1d612 100644 --- a/ags/widget/control-center/tiles/Tile.ts +++ b/ags/widget/control-center/tiles/Tile.ts @@ -10,7 +10,7 @@ export type TileProps = { title: string | Binding; description?: string | Binding; toggleState?: boolean | Binding; - enableOnClickMore: boolean | Binding; + enableOnClickMore?: boolean | Binding; onToggledOn: () => void; onToggledOff: () => void; onClickMore?: () => void;