@airpower/web 1.8.7 → 1.8.8
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/dist/main.js +1 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -17056,7 +17056,7 @@ function useTableColumn(params) {
|
|
|
17056
17056
|
} else {
|
|
17057
17057
|
selectKeys.value = list2;
|
|
17058
17058
|
}
|
|
17059
|
-
showColumnList.value = allColumnList.value.filter((item) => selectKeys.value.includes(item.key));
|
|
17059
|
+
showColumnList.value = allColumnList.value.filter((item) => selectKeys.value.includes(item.key) && !item.hide);
|
|
17060
17060
|
}
|
|
17061
17061
|
updateSelectKeys();
|
|
17062
17062
|
return {
|