Skip to content

Commit

Permalink
build(deps): update lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
tpluscode committed Mar 1, 2023
1 parent 94b06cd commit 1ada77c
Show file tree
Hide file tree
Showing 3 changed files with 3,459 additions and 3,019 deletions.
6 changes: 3 additions & 3 deletions ui/src/components/HierarchyTreeLevel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ export default defineComponent({
limit: pageSize,
offset: offset.value,
}
)?.execute(client, $rdf) || []
)!.execute(client, $rdf)
mayHaveMore.value = page.length >= pageSize
children.value = Remote.loaded((children.value?.data ?? []).concat(page))
mayHaveMore.value = page.children.length >= pageSize
children.value = Remote.loaded((children.value?.data ?? []).concat(page.children))
} catch (e: any) {
children.value = Remote.error(e.toString())
}
Expand Down
2 changes: 1 addition & 1 deletion ui/src/styles/vue-select.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import "vue-select/src/scss/vue-select.scss";
@import "vue-select/dist/vue-select.css";


.vs__dropdown-toggle {
Expand Down
Loading

0 comments on commit 1ada77c

Please sign in to comment.