Skip to content

Commit 5a8d516

Browse files
Merge pull request #262 from juliushaertl/fix/ui2
fix: Show snoozed items and fix some styling
2 parents e3b70e7 + fae3729 commit 5a8d516

File tree

3 files changed

+408
-382
lines changed

3 files changed

+408
-382
lines changed

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export default {
128128
},
129129
async newGroceryList() {
130130
try {
131-
const { data } = await axios.post(generateUrl('/apps/grocerylist/api/lists'), { title: '' })
131+
const { data } = await axios.post(generateUrl('/apps/grocerylist/api/lists'), { title: 'New list' })
132132
this.groceryLists.push(data)
133133
} catch (e) {
134134
console.error(e)

src/components/ListCategory.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
import { showError } from '@nextcloud/dialogs'
2525
import { NcButton, NcTextField } from '@nextcloud/vue'
2626
import { mapStores } from 'pinia'
27-
import { nextTick } from 'vue'
2827
import { useCategoryStore } from '../store/categoryStore.ts'
2928
3029
import IconCheck from 'vue-material-design-icons/Check.vue'

0 commit comments

Comments
 (0)