2022-06-28 06:53:39 +00:00
|
|
|
<!--
|
|
|
|
// Copyright © 2022 Hardcore Engineering Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License. You may
|
|
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
//
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
-->
|
|
|
|
<script lang="ts">
|
2022-09-21 08:08:25 +00:00
|
|
|
import { Ref } from '@hcengineering/core'
|
2023-03-17 06:17:53 +00:00
|
|
|
import { Project } from '@hcengineering/tracker'
|
2022-06-28 06:53:39 +00:00
|
|
|
import tracker from '../../plugin'
|
|
|
|
import IssuesView from './IssuesView.svelte'
|
|
|
|
|
2023-03-17 06:17:53 +00:00
|
|
|
export let currentSpace: Ref<Project>
|
2022-06-28 06:53:39 +00:00
|
|
|
|
|
|
|
$: query = { space: currentSpace }
|
|
|
|
</script>
|
|
|
|
|
2023-04-26 07:53:16 +00:00
|
|
|
<IssuesView {query} space={currentSpace} title={tracker.string.Issues} />
|