( groupKey: string | null, groupByPropertyId: string | null )
| 1096 | } |
| 1097 | |
| 1098 | private getReorderScopeQueueKey( |
| 1099 | groupKey: string | null, |
| 1100 | groupByPropertyId: string | null |
| 1101 | ): string { |
| 1102 | if (!groupByPropertyId) { |
| 1103 | return "manual-sort:list"; |
| 1104 | } |
| 1105 | |
| 1106 | return `manual-sort:${groupByPropertyId}:${this.getSortScopeKey(groupKey)}`; |
| 1107 | } |
| 1108 | |
| 1109 | private syncGroupedDragMetadata(items: TaskListRenderItem[]): void { |
| 1110 | this.taskGroupKeys.clear(); |
no test coverage detected