File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
webview-ui/src/components/settings Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,11 @@ export const AdvancedSettingsSection: React.FC<AdvancedSettingsSectionProps> = (
3232 appearance = "secondary"
3333 onClick = { toggleExpanded }
3434 className = "flex items-center justify-between w-full text-left" >
35- < span className = "font-medium whitespace-nowrap" > { t ( "settings:advanced.section.label" ) } </ span >
36- < span className = "ml-2" > { isExpanded ? "▼" : "▶" } </ span >
35+ { `${ t ( "settings:advanced.section.label" ) } ${ isExpanded ? "▼" : "▶" } ` }
3736 </ VSCodeButton >
3837
3938 { isExpanded && (
40- < div className = "flex flex-col gap-4 pl-4 border-l-2 border-vscode-button-background " >
39+ < div className = "flex flex-col gap-4" >
4140 < DiffSettingsControl
4241 diffEnabled = { diffEnabled }
4342 fuzzyMatchThreshold = { fuzzyMatchThreshold }
You can’t perform that action at this time.
0 commit comments