mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-22 04:12:23 +02:00
16 lines
345 B
Svelte
16 lines
345 B
Svelte
<!--
|
|
// Copyright © 2023 Hardcore Engineering Inc.
|
|
//
|
|
-->
|
|
<script lang="ts">
|
|
import { GithubPullRequest } from '@hcengineering/github'
|
|
import PullRequestDiff from './PullRequestDiff.svelte'
|
|
|
|
export let object: GithubPullRequest
|
|
export let embedded = false
|
|
</script>
|
|
|
|
<div class="mt-6">
|
|
<PullRequestDiff pullRequest={object} />
|
|
</div>
|