1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-04 16:31:13 +00:00

modify some style and parameter

This commit is contained in:
zxj96
2019-05-30 14:56:39 +08:00
parent 3fc5137409
commit f7dee15902
3 changed files with 6 additions and 6 deletions

View File

@@ -622,7 +622,7 @@ export const Utils = {
let result = _this.compareTwoWord(a.repo_name, b.repo_name);
return result;
}
return a.Initialsize < b.Initialsize ? -1 : 1;
return a.initialSize < b.initialSize ? -1 : 1;
};
break;
case 'size-desc':
@@ -632,7 +632,7 @@ export const Utils = {
return -result;
}
return a.Initialsize < b.Initialsize ? 1 : -1;
return a.initialSize < b.initialSize ? 1 : -1;
};
break;
}
@@ -674,7 +674,7 @@ export const Utils = {
let result = _this.compareTwoWord(a.name, b.name);
return result;
}
return a.Initialsize < b.Initialsize ? -1 : 1;
return a.initialSize < b.initialSize ? -1 : 1;
};
break;
case 'size-desc':
@@ -683,7 +683,7 @@ export const Utils = {
let result = _this.compareTwoWord(a.name, b.name);
return -result;
}
return a.Initialsize < b.Initialsize ? 1 : -1;
return a.initialSize < b.initialSize ? 1 : -1;
};
break;
}