mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 19:52:02 +00:00
fix: correct showLineNumbers default value to true
- Changed default value from false to true in settingsSchema.ts - This aligns the schema with the actual code behavior (?? true fallback) - Matches documentation and test expectations - Resolves inconsistency reported in issue #1764 Fixes #1764
This commit is contained in:
parent
fb9f3fb4dc
commit
428901f136
1 changed files with 1 additions and 1 deletions
|
|
@ -373,7 +373,7 @@ const SETTINGS_SCHEMA = {
|
|||
label: 'Show Line Numbers in Code',
|
||||
category: 'UI',
|
||||
requiresRestart: false,
|
||||
default: false,
|
||||
default: true,
|
||||
description: 'Show line numbers in the code output.',
|
||||
showInDialog: true,
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue