@@ -156,10 +156,6 @@ export const ManageSolution = (props: ManageSolutionProps) => {
156156 props . messageHandler . push ( { type : 'SET_DEBUGGER' , name } ) ;
157157 } , [ props . messageHandler ] ) ;
158158
159- const clickSave = React . useCallback ( ( ) => {
160- props . messageHandler . push ( { type : 'SAVE_CONTEXT_SELECTION' } ) ;
161- } , [ props . messageHandler ] ) ;
162-
163159 const changeAutoUpdate = React . useCallback ( ( e : CheckboxChangeEvent ) => {
164160 props . messageHandler . push ( { type : 'SET_AUTO_UPDATE' , value : e . target . checked } ) ;
165161 dispatch ( { type : 'INCOMING_MESSAGE' , message : { type : 'AUTO_UPDATE' , data : e . target . checked } } ) ;
@@ -276,7 +272,7 @@ export const ManageSolution = (props: ManageSolutionProps) => {
276272 } , [ adapter , selectedDebugAdapter , getProperty , getScaledProperty , keyFor ] ) ;
277273
278274 const showCoreSelector = state . solutionData . availableCoreNames !== undefined && state . solutionData . availableCoreNames . length > 1 ;
279- const debugAdapterConfigurationDocsUrl = 'https://mdk-packs.github.io/vscode-cmsis-solution-docs/debug.html#configure-run-and-debug' ;
275+ const debugAdapterConfigurationDocsUrl = 'https://mdk-packs.github.io/vscode-cmsis-solution-docs/debug.html#configure-run-and-debug' ;
280276 const externalLink = ( link : string , title : string , external ?: boolean ) : React . JSX . Element => {
281277 return ( < Button
282278 color = "default"
@@ -306,10 +302,6 @@ export const ManageSolution = (props: ManageSolutionProps) => {
306302 } ,
307303 token : { fontSize : 13 , sizeStep : 4 , borderRadius : 3 }
308304 } } >
309- < section className = 'stickyHeader' >
310- < Button disabled = { ! state . isDirty } style = { { minWidth : '100px' } } type = 'primary' onClick = { clickSave } className = 'save-button' > Save</ Button >
311- </ section >
312-
313305 < Spin spinning = { state . busy } indicator = { < LoadingOutlined spin = { true } /> } size = 'large' >
314306 < section className = "manage-solution-section" >
315307
0 commit comments