Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAndBear committed Apr 8, 2024
1 parent 6fea728 commit 3fb1958
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default defineComponent({
const space = inject<Ref<SpaceResource>>('space')
const resource = inject<Ref<Resource>>('resource')
const versions = inject<Ref<SpaceResource>>('versions')
const versions = inject<Ref<Resource[]>>('versions')
const isRevertible = computed(() => {
if (props.isReadOnly) {
Expand Down
2 changes: 1 addition & 1 deletion packages/web-pkg/src/components/SideBar/FileSideBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export default defineComponent({
const { currentFolder } = storeToRefs(resourcesStore)
const loadedResource = ref<Resource>()
const versions = ref<Resource>([])
const versions = ref<Resource[]>([])
const availableShareRoles = ref<ShareRole[]>([])
Expand Down

0 comments on commit 3fb1958

Please sign in to comment.