Skip to content

Commit 2998b36

Browse files
committed
fix
1 parent 3812fa4 commit 2998b36

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/application/services/useNoteList.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ interface UseNoteListComposableState {
2929
* Load next page of the notes
3030
*/
3131
loadMoreNotes: () => Promise<void>;
32+
33+
/**
34+
* Loading state
35+
*/
36+
isLoading: Ref<boolean>;
3237
}
3338

3439
/**

src/presentation/components/note-list/NoteList.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
<Button
3232
v-if="hasMoreNotes"
3333
:class="$style.button"
34+
secondary
3435
@click="loadMoreNotes"
3536
>
3637
{{ $t('loadMore') }}

0 commit comments

Comments
 (0)