Commit 894e70b5 authored by d.arizona's avatar d.arizona

ARPIN BACOT

parent c1098d4d
...@@ -213,6 +213,10 @@ export default class BudgetTahunan extends Component { ...@@ -213,6 +213,10 @@ export default class BudgetTahunan extends Component {
} }
}) })
if (arrayBaru.length > 0) {
companyData = companyData.sort((a,b) => a.company_name.localeCompare(b.company_name))
}
let defaultProps = { let defaultProps = {
options: companyData, options: companyData,
getOptionLabel: (option) => titleCase(option.company_name), getOptionLabel: (option) => titleCase(option.company_name),
...@@ -377,6 +381,10 @@ export default class BudgetTahunan extends Component { ...@@ -377,6 +381,10 @@ export default class BudgetTahunan extends Component {
} }
}) })
if (arrayBaru.length > 0) {
arrayBaru = arrayBaru.sort((a,b) => a.company_name.localeCompare(b.company_name))
}
let defaultProps = { let defaultProps = {
options: arrayBaru, options: arrayBaru,
getOptionLabel: (option) => titleCase(option.company_name), getOptionLabel: (option) => titleCase(option.company_name),
......
...@@ -98,6 +98,10 @@ export default class SubHolding extends Component { ...@@ -98,6 +98,10 @@ export default class SubHolding extends Component {
} }
}) })
if (arrayBaru.length > 0) {
arrayBaru = arrayBaru.sort((a,b) => a.company_name.localeCompare(b.company_name))
}
let defaultProps = { let defaultProps = {
options: arrayBaru, options: arrayBaru,
getOptionLabel: (option) => titleCase(option.company_name), getOptionLabel: (option) => titleCase(option.company_name),
......
...@@ -188,6 +188,10 @@ export default class OperatingIndicator extends Component { ...@@ -188,6 +188,10 @@ export default class OperatingIndicator extends Component {
} }
}) })
if (arrayBaru.length > 0) {
arrayBaru = arrayBaru.sort((a,b) => a.company_name.localeCompare(b.company_name))
}
let defaultProps = { let defaultProps = {
options: arrayBaru, options: arrayBaru,
getOptionLabel: (option) => titleCase(option.company_name), getOptionLabel: (option) => titleCase(option.company_name),
......
...@@ -110,6 +110,10 @@ export default class OutlookPA extends Component { ...@@ -110,6 +110,10 @@ export default class OutlookPA extends Component {
} }
}) })
if (arrayBaru.length > 0) {
companyData = companyData.sort((a,b) => a.company_name.localeCompare(b.company_name))
}
let defaultProps = { let defaultProps = {
options: companyData, options: companyData,
getOptionLabel: (option) => titleCase(option.company_name), getOptionLabel: (option) => titleCase(option.company_name),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment