bfg-common 1.6.103 → 1.6.105

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.
@@ -241,11 +241,12 @@ watch(
241
241
  (newValue: I_VmKernelAdapter[]) => {
242
242
  if (!newValue?.length) {
243
243
  selectedSysx.value = ''
244
+ selectedRow.value = undefined
244
245
  bodyItems.value = []
245
246
  } else {
246
247
  if (
247
248
  !newValue?.find?.(
248
- (network: I_VmKernelAdapter) => network.id === selectedSysx.value
249
+ (network: I_VmKernelAdapter) => network.device === selectedSysx.value
249
250
  )
250
251
  ) {
251
252
  selectedSysx.value = ''
@@ -447,4 +448,19 @@ const portEditSettingsTabs = computed<UI_I_ModalTab[]>(() =>
447
448
  :deep(.ui-button-group-dots-icon) {
448
449
  padding-left: 0;
449
450
  }
451
+
452
+ .action-button {
453
+ width: 20px;
454
+ height: 20px;
455
+ color: var(--close-icon);
456
+ cursor: pointer;
457
+
458
+ &:hover {
459
+ color: var(--btn-table-manager-color-hover);
460
+ }
461
+
462
+ &.action-button-active {
463
+ color: var(--btn-primary-fill-bg-color);
464
+ }
465
+ }
450
466
  </style>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.6.103",
4
+ "version": "1.6.105",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",