Fixed all type issues that were flagged in the IDE
This commit is contained in:
@@ -123,9 +123,9 @@
|
||||
<script setup lang="ts">
|
||||
const { api } = useApi()
|
||||
|
||||
const objects = ref([])
|
||||
const objects = ref<any[]>([])
|
||||
const loading = ref(true)
|
||||
const error = ref(null)
|
||||
const error = ref<string | null>(null)
|
||||
const showCreateForm = ref(false)
|
||||
const newObject = ref({
|
||||
apiName: '',
|
||||
|
||||
Reference in New Issue
Block a user