* 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
18 lines
318 B
Vue
18 lines
318 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.filter((i) => !i.linked_data)"
|
|
/>
|
|
</template>
|