* fix: add server to instance modal opens slow * fix: creators section org doesnt display for project pages in app * feat: separate modpacks and servers tabs in instances library
14 lines
281 B
Vue
14 lines
281 B
Vue
<script setup lang="ts">
|
|
import GridDisplay from '@/components/GridDisplay.vue'
|
|
|
|
defineProps({
|
|
instances: {
|
|
type: Array,
|
|
required: true,
|
|
},
|
|
})
|
|
</script>
|
|
<template>
|
|
<GridDisplay v-if="instances && instances.length > 0" label="Instances" :instances="instances" />
|
|
</template>
|