Skip to content

Commit

Permalink
fix: favorites filter (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-gustafsson authored Oct 14, 2023
1 parent d6c8924 commit 3d16feb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.moimob.drinkable"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 13900
versionName "1.39.0"
versionCode 13901
versionName "1.39.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ platform :android do
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")


upload_to_play_store(track: 'internal')
upload_to_play_store(track: 'production')

end

Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/13901.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
• Fixed issue with 'Show only favorites' filter
1 change: 1 addition & 0 deletions src/modules/cocktails/all-cocktails/all-cocktails.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ export class AllCocktails {
createCocktailDeleteToast(response.output.cocktail);
}

this.params.filter = undefined;
this.bind();
});
}
Expand Down
2 changes: 1 addition & 1 deletion src/modules/cocktails/cocktail-filter-component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="search-container-new bg-base-300">
<div style="min-height: 0.65em"></div>

<div class="flex justify-between responsive-container px-2">
<div class="flex justify-between responsive-container px-2 relative">
<input
type="text"
class="input input-bordered input-sm w-full"
Expand Down

0 comments on commit 3d16feb

Please sign in to comment.