Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/taxonomy/taxonomy-detail/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
* tags exceeding this depth, they will still be rendered, but further nesting will be blocked.
* * **Sync Required**: This must match `TAXONOMY_MAX_DEPTH` in the openedx-core backend.
*/
const TAXONOMY_MAX_DEPTH = 3;
const TAXONOMY_MAX_DEPTH = 5;

export { TAXONOMY_MAX_DEPTH };
1 change: 0 additions & 1 deletion src/taxonomy/tree-table/EditableCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ const EditableCell = ({
useEffect(() => {
if (autoFocus && inputRef.current) {
inputRef.current.focus();
inputRef.current.select();
}
}, [inputRef.current]); // autoFocus explicitly not a dependency, to avoid unexpected focus change.

Expand Down