mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Use Map.get to retrieve data
This commit is contained in:
parent
7073144f48
commit
5815f36ee2
1 changed files with 2 additions and 2 deletions
|
@ -775,8 +775,8 @@ export default {
|
|||
}
|
||||
|
||||
data.sort((data1, data2) => {
|
||||
let value1 = lookupMap(data1);
|
||||
let value2 = lookupMap(data2);
|
||||
let value1 = lookupMap.get(data1);
|
||||
let value2 = lookupMap.get(data2);
|
||||
|
||||
let result = null;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue