Skip to content

Commit

Permalink
Missing minus in Shopping List UI (#688)
Browse files Browse the repository at this point in the history
* Shopping list quantity decrement button -> minus

Missed being renamed when material design icons were moved
to be global variables, still used the original md name.

* Updated poetry lock to fix rdflib-jsonld error

`extruct` depends on rdflib-jsonld, which had an error involving `use_2to3`
(RDFLib/rdflib-jsonld#105), which prevented
building.

* update poetry CI/CD Version

Co-authored-by: Hayden <[email protected]>
  • Loading branch information
BryceStevenWilley and hay-kot authored Sep 23, 2021
1 parent eb4c4a8 commit 1f46cd3
Show file tree
Hide file tree
Showing 4 changed files with 354 additions and 276 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# ----- install & configure poetry -----
#----------------------------------------------
- name: Install Poetry
uses: snok/install-poetry@v1.1.1
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/ShoppingList/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<div v-if="edit">
<v-btn x-small text class="ml-1" @click="activeList.items[index].quantity -= 1">
<v-icon>
{{ $globals.icons.mdiMinus }}
{{ $globals.icons.minus }}
</v-icon>
</v-btn>
<v-btn x-small text class="mr-1" @click="activeList.items[index].quantity += 1">
Expand Down
Loading

0 comments on commit 1f46cd3

Please sign in to comment.