File tree
Expand file treeCollapse file tree1 file changed
+2
-0
lines changed Expand file treeCollapse file tree1 file changed
+2
-0
lines changed Original file line number | Diff line number | Diff line change |
---|
@@ -249,6 +249,7 @@ export class LeetCodeTreeDataProvider implements vscode.TreeDataProvider<LeetCod
|
249 | 249 | }
|
250 | 250 | return getValue(a) - getValue(b);
|
251 | 251 | });
|
| 252 | +break; |
252 | 253 | case Category.Tag:
|
253 | 254 | case Category.Company:
|
254 | 255 | subCategoryNodes.sort((a: LeetCodeNode, b: LeetCodeNode): number => {
|
@@ -260,6 +261,7 @@ export class LeetCodeTreeDataProvider implements vscode.TreeDataProvider<LeetCod
|
260 | 261 | return Number(a.name > b.name) - Number(a.name < b.name);
|
261 | 262 | }
|
262 | 263 | });
|
| 264 | +break; |
263 | 265 | default:
|
264 | 266 | break;
|
265 | 267 | }
|
|
You can’t perform that action at this time.
0 commit comments