File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
apps/remix-ide/src/app/tabs/locales/en
libs/remix-ui/settings/src/lib Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3939 "settings.analyticsInRemix" : " Analytics in Remix IDE" ,
4040 "settings.copilot" : " Solidity copilot - Alpha" ,
4141 "settings.copilot.activate" : " Load & Activate copilot" ,
42- "settings.copilot.max_new_tokens" : " Maximum amount of new words to generate" ,
42+ "settings.copilot.max_new_tokens" : " Maximum number of words to generate" ,
4343 "settings.copilot.temperature" : " Temperature"
4444}
Original file line number Diff line number Diff line change @@ -466,7 +466,7 @@ export const RemixUiSettings = (props: RemixUiSettingsProps) => {
466466 < div className = "text-secondary mb-0 h6" >
467467 < div >
468468 < div className = "mb-1" >
469- < label className = { `align-middle ${ getTextClass ( 'settings/copilot/suggest/max_new_tokens' ) } ` } htmlFor = "copilot-activate" >
469+ < label className = { `form-check-label align-middle ${ getTextClass ( 'settings/copilot/suggest/max_new_tokens' ) } ` } htmlFor = "copilot-activate" >
470470 < FormattedMessage id = "settings.copilot.max_new_tokens" /> - < span > { copilotMaxnewToken } </ span >
471471 </ label >
472472 < input onChange = { onchangeCopilotMaxNewToken } id = "copilot-max-new-token" value = { copilotMaxnewToken } min = '1' max = '150' type = "range" className = "custom-range" />
@@ -479,7 +479,7 @@ export const RemixUiSettings = (props: RemixUiSettingsProps) => {
479479 < div className = "text-secondary mb-0 h6" >
480480 < div >
481481 < div className = "mb-1" >
482- < label className = { `align-middle ${ getTextClass ( 'settings/copilot/suggest/temperature' ) } ` } htmlFor = "copilot-activate" >
482+ < label className = { `form-check-label align-middle ${ getTextClass ( 'settings/copilot/suggest/temperature' ) } ` } htmlFor = "copilot-activate" >
483483 < FormattedMessage id = "settings.copilot.temperature" /> - < span > { copilotTemperatureValue / 100 } </ span >
484484 </ label >
485485 < input onChange = { onchangeCopilotTemperature } id = "copilot-temperature" value = { copilotTemperatureValue } min = '0' max = '100' type = "range" className = "custom-range" />
You can’t perform that action at this time.
0 commit comments