Skip to content

Commit b1d1e87

Browse files
fix: favorites filter
1 parent d6c8924 commit b1d1e87

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "com.moimob.drinkable"
88
minSdkVersion rootProject.ext.minSdkVersion
99
targetSdkVersion rootProject.ext.targetSdkVersion
10-
versionCode 13900
11-
versionName "1.39.0"
10+
versionCode 13901
11+
versionName "1.39.1"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1313
aaptOptions {
1414
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.

fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ platform :android do
2121
sh("jarsigner -keystore ./../android/keystore.jks -storepass $RELEASE_KEYSTORE_PASSWORD -signedjar ./../android/app/build/outputs/bundle/release/app-release.aab ./../android/app/build/outputs/bundle/release/app-release.aab key0")
2222

2323

24-
upload_to_play_store(track: 'internal')
24+
upload_to_play_store(track: 'production')
2525

2626
end
2727

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
• Fixed issue with 'Show only favorites' filter

src/modules/cocktails/all-cocktails/all-cocktails.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ export class AllCocktails {
6666
createCocktailDeleteToast(response.output.cocktail);
6767
}
6868

69+
this.params.filter = undefined;
6970
this.bind();
7071
});
7172
}

src/modules/cocktails/cocktail-filter-component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="search-container-new bg-base-300">
33
<div style="min-height: 0.65em"></div>
44

5-
<div class="flex justify-between responsive-container px-2">
5+
<div class="flex justify-between responsive-container px-2 relative">
66
<input
77
type="text"
88
class="input input-bordered input-sm w-full"

0 commit comments

Comments
 (0)