feat: Add code blocks full height setting to parameter sync service (#19835)

This commit is contained in:
Aleksander Grygier
2026-02-23 22:30:13 +01:00
committed by GitHub
parent b68a83e641
commit 5eb0ea32f0
2 changed files with 6 additions and 0 deletions

Binary file not shown.

View File

@@ -153,6 +153,12 @@ export const SYNCABLE_PARAMETERS: SyncableParameter[] = [
serverKey: 'enableContinueGeneration',
type: SyncableParameterType.BOOLEAN,
canSync: true
},
{
key: 'fullHeightCodeBlocks',
serverKey: 'fullHeightCodeBlocks',
type: SyncableParameterType.BOOLEAN,
canSync: true
}
];