bfg-common 1.2.59 → 1.2.60
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.
|
@@ -555,10 +555,10 @@ const doubleArrowClick = (
|
|
|
555
555
|
watch(
|
|
556
556
|
() => props.selectedRow,
|
|
557
557
|
(newValue) => {
|
|
558
|
-
if (Array.isArray(newValue) && !newValue.length) selectedAll.value = false
|
|
559
|
-
|
|
560
558
|
if (newValue === undefined) return
|
|
561
559
|
|
|
560
|
+
if (Array.isArray(newValue) && !newValue.length) selectedAll.value = false
|
|
561
|
+
|
|
562
562
|
selectedRowLocal.value = newValue
|
|
563
563
|
},
|
|
564
564
|
{ immediate: true }
|
|
@@ -732,7 +732,7 @@ const bodyItemsPresent = computed<UI_I_BodyItem[][]>(() => {
|
|
|
732
732
|
if (
|
|
733
733
|
col.key === item.key &&
|
|
734
734
|
typeof col.text === 'string' &&
|
|
735
|
-
|
|
735
|
+
hasItem != -1
|
|
736
736
|
) {
|
|
737
737
|
hasItem = col.text.toLowerCase().includes(term) ? 1 : -1
|
|
738
738
|
}
|