bfg-common 1.4.679 → 1.4.680
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,8 +6,6 @@ import type {
|
|
|
6
6
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
7
7
|
import type { UI_I_RecentTaskItem } from '~/lib/models/store/tasks/interfaces'
|
|
8
8
|
import { UI_E_RecentTaskStatus } from '~/lib/models/store/tasks/enums'
|
|
9
|
-
// import { E_NodeIconsByState } from '~/lib/models/enums'
|
|
10
|
-
// import { UI_E_TabsByType } from '~/components/common/pages/tasks/table/lib/models/enums'
|
|
11
9
|
import {
|
|
12
10
|
UI_E_RTaskChipColor,
|
|
13
11
|
UI_E_RTaskStatusIcon,
|
|
@@ -168,15 +166,11 @@ export const getBodyDataFunc = (
|
|
|
168
166
|
const nav = taskConfig.navFunc(task.targetType)
|
|
169
167
|
const type = taskConfig.typeFunc(task.targetType)
|
|
170
168
|
|
|
171
|
-
// const iconClassName = E_NodeIconsByState[`${task.targetType}_Normal`]
|
|
172
|
-
// const id = task.extra?.created_id || task.target
|
|
173
169
|
const targetData = {
|
|
174
170
|
id,
|
|
175
171
|
nav,
|
|
176
172
|
type,
|
|
177
173
|
icon: iconClassName,
|
|
178
|
-
// nav: UI_E_TabsByType[task.targetType],
|
|
179
|
-
// type: task.targetType,
|
|
180
174
|
isLink: !!iconClassName,
|
|
181
175
|
testId: `${task.targetType}-item`,
|
|
182
176
|
}
|