bfg-common 1.3.244 → 1.3.245
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.
- package/components/atoms/table/dataGrid/DataGrid.vue +1 -1
- package/components/common/context/ContextRecursion.vue +1 -1
- package/components/common/context/lib/models/interfaces.ts +1 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/tableConfig.ts +3 -1
- package/package.json +1 -1
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
<div class="flex-align-center">
|
|
298
298
|
<button
|
|
299
299
|
:id="`${props.testId}-toggle-icon-${key}`"
|
|
300
|
-
:
|
|
300
|
+
:data-id="`${item[0].testId}-toggle-row-button`"
|
|
301
301
|
class="datagrid-expandable-caret-button reset-btn"
|
|
302
302
|
@click="toggle(key)"
|
|
303
303
|
>
|
|
@@ -45,7 +45,9 @@ export const headItems = (localization: UI_I_Localization): UI_I_HeadItem[] => {
|
|
|
45
45
|
const result: UI_I_HeadItem[] = []
|
|
46
46
|
getItems(localization).forEach((item, i) => {
|
|
47
47
|
const col = `col${i + 1}`
|
|
48
|
-
result.push(
|
|
48
|
+
result.push(
|
|
49
|
+
constructHeadItem(col, item[0], item[3], false, item[2], '', item[3])
|
|
50
|
+
)
|
|
49
51
|
})
|
|
50
52
|
return result
|
|
51
53
|
}
|