2022-04-23 16:59:57 +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.
|
|
|
|
-->
|
2022-04-08 18:05:49 +00:00
|
|
|
<script lang="ts">
|
2022-03-31 08:32:42 +00:00
|
|
|
import { Ref } from '@anticrm/core'
|
2022-04-23 16:59:57 +00:00
|
|
|
import { Team, IssuesDateModificationPeriod } from '@anticrm/tracker'
|
2022-04-08 18:05:49 +00:00
|
|
|
import tracker from '../../plugin'
|
2022-04-23 16:59:57 +00:00
|
|
|
import Issues from './Issues.svelte'
|
2022-03-31 08:32:42 +00:00
|
|
|
|
2022-04-08 18:05:49 +00:00
|
|
|
export let currentSpace: Ref<Team>
|
2022-04-22 06:13:57 +00:00
|
|
|
|
|
|
|
const completedIssuesPeriod: IssuesDateModificationPeriod | null = null
|
2022-03-31 08:32:42 +00:00
|
|
|
</script>
|
2022-04-08 18:05:49 +00:00
|
|
|
|
2022-04-20 06:06:05 +00:00
|
|
|
<Issues
|
|
|
|
{currentSpace}
|
2022-04-22 06:13:57 +00:00
|
|
|
{completedIssuesPeriod}
|
2022-04-23 16:59:57 +00:00
|
|
|
includedGroups={{ status: [tracker.issueStatusCategory.Unstarted, tracker.issueStatusCategory.Started] }}
|
2022-04-20 06:06:05 +00:00
|
|
|
title={tracker.string.ActiveIssues}
|
|
|
|
/>
|