Refactor DatePicker.vue to remove console.log statement

Refactor RGangguan_BerdasarMedia.vue to fix css-class typo
Refactor RKeluhan_BerdasarMedia.vue to update display-format and css-class
Refactor RGangguan_KTI.vue to remove 'Semua Unit' and 'Regional' from groupList
Refactor RGangguan_CTTM.vue to remove 'Semua Unit' and 'Regional' from groupList
Refactor Type11.vue to update placeholder and values in InputWithSuffix
Refactor RKeluhan_PerUnit.vue to update calculateCustomSummary function
This commit is contained in:
Dede Fuji Abdul
2024-04-09 17:17:31 +07:00
parent 5121789e19
commit 2253499600
19 changed files with 1028 additions and 211 deletions

View File

@@ -1320,7 +1320,13 @@ const filterData = async (params: any) => {
if (uid?.id != 0) {
groupList.forEach((item, index) => {
if (item.caption == 'Semua Unit' || item.caption == 'Regional') {
if (item.caption == 'Semua Unit') {
groupList.splice(index, 1)
}
})
groupList.forEach((item, index) => {
if (item.caption == 'Regional') {
groupList.splice(index, 1)
}
})