From 185eda9106a32ef3fd2fde6216462c4f45d99b19 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Thu, 30 Apr 2026 19:54:57 +0200 Subject: [PATCH] Update search input to full width and bump Android versionCode to 96 --- android/app/build.gradle | 2 +- web/components/filters/search.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 969dcff8..ab3e5837 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -11,7 +11,7 @@ android { applicationId "com.compassconnections.app" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 95 + versionCode 96 versionName "1.21.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { diff --git a/web/components/filters/search.tsx b/web/components/filters/search.tsx index 60db93bd..6c25d196 100644 --- a/web/components/filters/search.tsx +++ b/web/components/filters/search.tsx @@ -167,7 +167,7 @@ export const Search = forwardRef< ref={ref} value={keywordInput} placeholder={placeholder} - className={'w-48 sm:w-96'} + className={'w-full sm:w-96'} onChange={(e: React.ChangeEvent) => { setKeywordInput(e.target.value) }}