File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4822,7 +4822,7 @@ export class ProjectExplorer implements CustomConfigurationProvider {
48224822
48234823 WebPanelManager . instance ( ) . showSimpleConfigUI ( ui_cfg , ( new_cfg ) => {
48244824
4825- const nArgs = ( < SimpleUIConfigData_input > new_cfg . items [ 'args' ] . data ) . value . trim ( ) ;
4825+ const nArgs = ( < SimpleUIConfigData_input > new_cfg . items [ 'args' ] . data ) . value . replace ( / \r \n | \n / g , ' ' ) . trim ( ) ;
48264826
48274827 let pattern : string ;
48284828
@@ -4930,7 +4930,7 @@ export class ProjectExplorer implements CustomConfigurationProvider {
49304930
49314931 WebPanelManager . instance ( ) . showSimpleConfigUI ( ui_cfg , ( new_cfg ) => {
49324932
4933- const nArgs = ( < SimpleUIConfigData_input > new_cfg . items [ 'args' ] . data ) . value . trim ( ) ;
4933+ const nArgs = ( < SimpleUIConfigData_input > new_cfg . items [ 'args' ] . data ) . value . replace ( / \r \n | \n / g , ' ' ) . trim ( ) ;
49344934 const isRecursive = ( < SimpleUIConfigData_boolean > new_cfg . items [ 'recursive' ] . data ) . value ;
49354935
49364936 let pattern : string ;
You can’t perform that action at this time.
0 commit comments