ms-data-grid 0.0.67 → 0.0.68
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.
|
@@ -2145,6 +2145,10 @@ class DataGridComponent {
|
|
|
2145
2145
|
async setColumnsColumnDropdownValus() {
|
|
2146
2146
|
if (!this.columns)
|
|
2147
2147
|
return;
|
|
2148
|
+
// Just removed temporary for super admin will set it again
|
|
2149
|
+
if (this.columns?.length) {
|
|
2150
|
+
this.columns = this.columns?.filter(c => c?.field?.trim() !== 'is_deleted');
|
|
2151
|
+
}
|
|
2148
2152
|
this.columns = await this.commonSevice.copyDropdownDataRecursively(this.columns);
|
|
2149
2153
|
}
|
|
2150
2154
|
applyRowsSelectionState() {
|