fix: configure scrollbar settings for Monaco Editor

This commit is contained in:
Bhavesh Kshatriya
2025-07-19 18:38:38 +05:30
parent 6942b0b0a4
commit 4ba23ca127

View File

@@ -102,8 +102,12 @@ export default function ToolCodeInput({
value={value} value={value}
onChange={(value) => onChange(value ?? '')} onChange={(value) => onChange(value ?? '')}
options={{ options={{
overviewRuler: { scrollbar: {
enabled: false vertical: 'visible',
horizontal: 'visible',
verticalScrollbarSize: 10,
horizontalScrollbarSize: 10,
alwaysConsumeMouseWheel: false
} }
}} }}
/> />