From 45108b465782d9946a29ab15b914d41f6424a590 Mon Sep 17 00:00:00 2001 From: Anna No Date: Thu, 28 Apr 2022 10:33:59 +0700 Subject: [PATCH] Board: Remove stale left panel items (#1574) Signed-off-by: Anna No --- models/board/src/index.ts | 23 ----------------------- plugins/board-resources/src/plugin.ts | 3 --- 2 files changed, 26 deletions(-) diff --git a/models/board/src/index.ts b/models/board/src/index.ts index 580bd6a858..1b6b1a5ffb 100644 --- a/models/board/src/index.ts +++ b/models/board/src/index.ts @@ -143,29 +143,6 @@ export function createModel (builder: Builder): void { icon: board.icon.Board, hidden: false, navigatorModel: { - specials: [ - { - id: 'boards', - label: board.string.Boards, - icon: board.icon.Board, - component: board.component.Boards, - position: 'top' - }, - { - id: 'members', - label: board.string.Members, - icon: board.icon.Board, - component: board.component.Members, - position: 'top' - }, - { - id: 'settings', - label: board.string.Settings, - icon: board.icon.Board, - component: board.component.Settings, - position: 'top' - } - ], spaces: [ { label: board.string.MyBoards, diff --git a/plugins/board-resources/src/plugin.ts b/plugins/board-resources/src/plugin.ts index b3bf1ae076..d88f891dca 100644 --- a/plugins/board-resources/src/plugin.ts +++ b/plugins/board-resources/src/plugin.ts @@ -122,10 +122,7 @@ export default mergeIds(boardId, board, { SearchArchive: '' as IntlString }, component: { - Boards: '' as AnyComponent, EditCard: '' as AnyComponent, - Members: '' as AnyComponent, - Settings: '' as AnyComponent, BoardHeader: '' as AnyComponent } })