Skip to content

Commit

Permalink
Merge pull request #198 from KaiShoya/hotfix/#197
Browse files Browse the repository at this point in the history
Hotfix/#197
  • Loading branch information
KaiShoya committed Apr 18, 2024
2 parents 59e36b5 + 0333f09 commit 3127f79
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "drink-counter",
"version": "1.16.0",
"version": "1.16.1",
"license": "MIT",
"engines": {
"node": "20"
Expand Down
1 change: 1 addition & 0 deletions store/pages/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ export const useIndexStore = defineStore('numberOfDrinksStore', () => {
}

numberOfDrinks.value = []
labelsWithDrinks.value = []
drinkCountForDay.value = 0

findDrinksVisible().forEach((drink) => {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
drop index if exists "public"."drinks_name_keys";

CREATE UNIQUE INDEX drinks_user_id_drink_label_id_name_idx ON public.drinks USING btree (user_id, drink_label_id, name);


0 comments on commit 3127f79

Please sign in to comment.