ui-repolist: sort null values last
When sorting on e.g. owner, it's not interesting to get all repos without owner at the top of the list. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
这个提交包含在:
		| @@ -116,9 +116,9 @@ static int cmp(const char *s1, const char *s2) | ||||
| 	if (s1 && s2) | ||||
| 		return strcmp(s1, s2); | ||||
| 	if (s1 && !s2) | ||||
| 		return 1; | ||||
| 	if (s2 && !s1) | ||||
| 		return -1; | ||||
| 	if (s2 && !s1) | ||||
| 		return 1; | ||||
| 	return 0; | ||||
| } | ||||
|  | ||||
|   | ||||
		在新工单中引用
	
	屏蔽一个用户
	 Lars Hjemli
					Lars Hjemli