a6ead06873
* Make project & model headers non-editable * Fixes from PR * Add placeholder for description
17 lines
409 B
Vue
17 lines
409 B
Vue
<template>
|
|
<div class="flex flex-col gap-2">
|
|
<h2 class="h3">{{ title }}</h2>
|
|
<p v-if="description" class="text-foreground-2">{{ description }}</p>
|
|
<p v-else class="text-foreground-2 italic select-none">No description</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { Nullable } from '@speckle/shared'
|
|
|
|
defineProps<{
|
|
title: string
|
|
description?: Nullable<string>
|
|
}>()
|
|
</script>
|