Quellcode durchsuchen

update

tags/Baseline_180220205_Frontend
MSI\derek vor 11 Monaten
Ursprung
Commit
d7cad17805
1 geänderte Dateien mit 1 neuen und 2 gelöschten Zeilen
  1. +1
    -2
      src/components/ResourceOverconsumptionReport/ResourceOverconsumptionReport.tsx

+ 1
- 2
src/components/ResourceOverconsumptionReport/ResourceOverconsumptionReport.tsx Datei anzeigen

@@ -96,13 +96,12 @@ return (
criteria={searchCriteria}
onSearch={async (query: any) => {
const [custType, id] = readIntFromString(query.customer) as [string, number]
let index = 0
let postData: ProjectResourceOverconsumptionReportRequest = {
status: "All",
lowerLimit: 0.9
}
if (query.team.length > 0 && query.team.toLocaleLowerCase() !== "all") {
index = teamCombo.findIndex(team => team === query.team)
const index = teamCombo.findIndex(team => team === query.team)
const teamId = team[index].id
postData.teamId = teamId
}


Laden…
Abbrechen
Speichern