fix(breadcrumb): overflow hides more items than threshold

This commit is contained in:
Elian Doran 2025-12-23 20:40:56 +02:00
parent 1ac7db41d3
commit 00592025c0
No known key found for this signature in database

View File

@ -32,7 +32,7 @@ import { ParentComponent } from "../react/react_utils";
const COLLAPSE_THRESHOLD = 5;
const INITIAL_ITEMS = 2;
const FINAL_ITEMS = 2;
const FINAL_ITEMS = 3;
export default function Breadcrumb() {
const { note, notePath, notePaths, noteContext } = useNotePaths();