(groupId: UniqueId)
| 563 | } |
| 564 | |
| 565 | public getGroupById(groupId: UniqueId): IEditorGroup | undefined { |
| 566 | const { groups } = this.state; |
| 567 | return groups!.find(searchById(groupId)); |
| 568 | } |
| 569 | |
| 570 | public getGroupIndexById(id: UniqueId): number { |
| 571 | const { groups } = this.state; |
no test coverage detected