mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-22 16:27:22 +00:00
Remove roadmap (#2760)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
This commit is contained in:
parent
29a0986241
commit
8e3a6989cd
@ -994,7 +994,7 @@ export function createModel (builder: Builder): void {
|
|||||||
label: tracker.string.MyIssues,
|
label: tracker.string.MyIssues,
|
||||||
icon: tracker.icon.MyIssues,
|
icon: tracker.icon.MyIssues,
|
||||||
component: tracker.component.MyIssues
|
component: tracker.component.MyIssues
|
||||||
},
|
}
|
||||||
// {
|
// {
|
||||||
// id: 'views',
|
// id: 'views',
|
||||||
// position: 'top',
|
// position: 'top',
|
||||||
@ -1002,13 +1002,6 @@ export function createModel (builder: Builder): void {
|
|||||||
// icon: tracker.icon.Views,
|
// icon: tracker.icon.Views,
|
||||||
// component: tracker.component.Views
|
// component: tracker.component.Views
|
||||||
// },
|
// },
|
||||||
{
|
|
||||||
id: 'roadmap',
|
|
||||||
position: 'top',
|
|
||||||
label: tracker.string.Roadmap,
|
|
||||||
icon: tracker.icon.Components,
|
|
||||||
component: tracker.component.Roadmap
|
|
||||||
}
|
|
||||||
],
|
],
|
||||||
spaces: [
|
spaces: [
|
||||||
{
|
{
|
||||||
|
@ -137,7 +137,6 @@
|
|||||||
"ComponentMembersTitle": "Component members",
|
"ComponentMembersTitle": "Component members",
|
||||||
"ComponentLeadSearchPlaceholder": "Set component lead\u2026",
|
"ComponentLeadSearchPlaceholder": "Set component lead\u2026",
|
||||||
"ComponentMembersSearchPlaceholder": "Change component members\u2026",
|
"ComponentMembersSearchPlaceholder": "Change component members\u2026",
|
||||||
"Roadmap": "Roadmap",
|
|
||||||
"MoveToProject": "Move to project",
|
"MoveToProject": "Move to project",
|
||||||
"Duplicate": "Duplicate",
|
"Duplicate": "Duplicate",
|
||||||
|
|
||||||
|
@ -137,7 +137,6 @@
|
|||||||
"ComponentMembersTitle": "Участники компонента",
|
"ComponentMembersTitle": "Участники компонента",
|
||||||
"ComponentLeadSearchPlaceholder": "Назначьте руководителя компонента\u2026",
|
"ComponentLeadSearchPlaceholder": "Назначьте руководителя компонента\u2026",
|
||||||
"ComponentMembersSearchPlaceholder": "Измененить участников компонента\u2026",
|
"ComponentMembersSearchPlaceholder": "Измененить участников компонента\u2026",
|
||||||
"Roadmap": "Планирование",
|
|
||||||
"MoveToProject": "Изменить проект",
|
"MoveToProject": "Изменить проект",
|
||||||
"Duplicate": "Дублировать",
|
"Duplicate": "Дублировать",
|
||||||
|
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
<!--
|
|
||||||
// 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">
|
|
||||||
import Components from './Components.svelte'
|
|
||||||
import tracker from '../../plugin'
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<Components label={tracker.string.Roadmap} />
|
|
@ -61,7 +61,6 @@ import Components from './components/components/Components.svelte'
|
|||||||
import ComponentStatusEditor from './components/components/ComponentStatusEditor.svelte'
|
import ComponentStatusEditor from './components/components/ComponentStatusEditor.svelte'
|
||||||
import ComponentStatusPresenter from './components/components/ComponentStatusPresenter.svelte'
|
import ComponentStatusPresenter from './components/components/ComponentStatusPresenter.svelte'
|
||||||
import ComponentTitlePresenter from './components/components/ComponentTitlePresenter.svelte'
|
import ComponentTitlePresenter from './components/components/ComponentTitlePresenter.svelte'
|
||||||
import Roadmap from './components/components/Roadmap.svelte'
|
|
||||||
import TargetDatePresenter from './components/components/TargetDatePresenter.svelte'
|
import TargetDatePresenter from './components/components/TargetDatePresenter.svelte'
|
||||||
import ProjectComponents from './components/components/ProjectComponents.svelte'
|
import ProjectComponents from './components/components/ProjectComponents.svelte'
|
||||||
import RelationsPopup from './components/RelationsPopup.svelte'
|
import RelationsPopup from './components/RelationsPopup.svelte'
|
||||||
@ -382,7 +381,6 @@ export default async (): Promise<Resources> => ({
|
|||||||
IssuesView,
|
IssuesView,
|
||||||
KanbanView,
|
KanbanView,
|
||||||
ProjectComponents,
|
ProjectComponents,
|
||||||
Roadmap,
|
|
||||||
IssuePreview,
|
IssuePreview,
|
||||||
RelationsPopup,
|
RelationsPopup,
|
||||||
CreateIssue,
|
CreateIssue,
|
||||||
|
@ -166,7 +166,6 @@ export default mergeIds(trackerId, tracker, {
|
|||||||
ComponentMembersSearchPlaceholder: '' as IntlString,
|
ComponentMembersSearchPlaceholder: '' as IntlString,
|
||||||
List: '' as IntlString,
|
List: '' as IntlString,
|
||||||
NumberLabels: '' as IntlString,
|
NumberLabels: '' as IntlString,
|
||||||
Roadmap: '' as IntlString,
|
|
||||||
MoveToProject: '' as IntlString,
|
MoveToProject: '' as IntlString,
|
||||||
Duplicate: '' as IntlString,
|
Duplicate: '' as IntlString,
|
||||||
|
|
||||||
@ -344,7 +343,6 @@ export default mergeIds(trackerId, tracker, {
|
|||||||
EditComponent: '' as AnyComponent,
|
EditComponent: '' as AnyComponent,
|
||||||
IssuesView: '' as AnyComponent,
|
IssuesView: '' as AnyComponent,
|
||||||
KanbanView: '' as AnyComponent,
|
KanbanView: '' as AnyComponent,
|
||||||
Roadmap: '' as AnyComponent,
|
|
||||||
ProjectComponents: '' as AnyComponent,
|
ProjectComponents: '' as AnyComponent,
|
||||||
IssuePreview: '' as AnyComponent,
|
IssuePreview: '' as AnyComponent,
|
||||||
RelationsPopup: '' as AnyComponent,
|
RelationsPopup: '' as AnyComponent,
|
||||||
|
Loading…
Reference in New Issue
Block a user