()
| 1763 | } |
| 1764 | |
| 1765 | function useOnScreenEntryEditableThreadInfos(): $ReadOnlyArray<ThreadInfo> { |
| 1766 | const visibleThreadInfos = useSelector(onScreenThreadInfos); |
| 1767 | const editableVisibleThreadInfos = useThreadsWithPermission( |
| 1768 | visibleThreadInfos, |
| 1769 | threadPermissions.EDIT_ENTRIES, |
| 1770 | ); |
| 1771 | return editableVisibleThreadInfos; |
| 1772 | } |
| 1773 | |
| 1774 | function createThreadTimestamps( |
| 1775 | timestamp: number, |
no test coverage detected