Skip to content

Commit

Permalink
1.11.1 - Bottom sheet height fix (#205)
Browse files Browse the repository at this point in the history
* filter bottom sheet height fix

* fixing filter panel height
  • Loading branch information
mkieres authored Jul 3, 2023
1 parent f5c5c00 commit 1d8a032
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,6 @@ class _AppBar extends StatefulWidget {
}

class _AppBarState extends State<_AppBar> {
static const double _requiredFiltersBottomSheetHeight = 500;

@override
Widget build(BuildContext context) => SliverAppBar(
pinned: true,
Expand Down Expand Up @@ -297,8 +295,7 @@ class _AppBarState extends State<_AppBar> {
),
context: context,
builder: (context) {
return SizedBox(
height: _requiredFiltersBottomSheetHeight,
return IntrinsicHeight(
child: CollectionsFilterPanel(viewModel: widget.viewModel),
);
},
Expand Down
2 changes: 2 additions & 0 deletions cloud_infrastructure/terraform/prod/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ resource "azurerm_container_app" "search_service_ca" {
cpu = 0.25
memory = "0.5Gi"
}

min_replicas = 1
}

ingress {
Expand Down

0 comments on commit 1d8a032

Please sign in to comment.