Fix: The minimum size of the historical message window for the classification operator is 1. #12778 (#12779)

### What problem does this PR solve?

Fix: The minimum size of the historical message window for the
classification operator is 1. #12778

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu
2026-01-22 19:45:25 +08:00
committed by GitHub
parent 3beb85efa0
commit 7c9b6e032b
4 changed files with 51 additions and 15 deletions

View File

@@ -206,6 +206,8 @@ export const InnerBlurInput = React.forwardRef<
);
});
InnerBlurInput.displayName = 'BlurInput';
if (process.env.NODE_ENV !== 'production') {
InnerBlurInput.whyDidYouRender = true;
}