Skip to content

Commit

Permalink
build: fix ui build
Browse files Browse the repository at this point in the history
  • Loading branch information
tpluscode committed Dec 31, 2024
1 parent de53888 commit 8ef22e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/views/SharedDimensions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default defineComponent({
this.operation = this.collection.actions.get
this.searchParams = this.collection.searchParams
this.pageSize = this.searchParams.out(hydra.limit).value
this.page = parseInt(this.$router.currentRoute.value.query.page) || 1
this.page = parseInt(this.$router.currentRoute.value.query.page as any) || 1
},
setup () {
Expand Down Expand Up @@ -134,7 +134,7 @@ export default defineComponent({
await this.$store.dispatch('sharedDimensions/fetchCollection', to.query)
this.searchParams = this.collection.searchParams
this.pageSize = this.searchParams.out(hydra.limit).value
this.page = parseInt(to.query.page) || 1
this.page = parseInt(to.query.page as any) || 1
},
methods: {
Expand Down

0 comments on commit 8ef22e5

Please sign in to comment.