File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/vs/workbench/contrib/userDataProfile/browser Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -462,12 +462,12 @@ export class UserDataProfilesWorkbenchContribution extends Disposable implements
462
462
const validate = ( ) => {
463
463
if ( ! profile && this . userDataProfilesService . profiles . some ( p => p . name === quickPick . value ) ) {
464
464
quickPick . validationMessage = localize ( 'profileExists' , "Profile with name {0} already exists." , quickPick . value ) ;
465
- quickPick . severity = Severity . Error ;
465
+ quickPick . severity = Severity . Warning ;
466
466
return ;
467
467
}
468
468
if ( resources . every ( resource => ! resource . picked ) ) {
469
469
quickPick . validationMessage = localize ( 'invalid configurations' , "The profile should contain at least one configuration." ) ;
470
- quickPick . severity = Severity . Error ;
470
+ quickPick . severity = Severity . Warning ;
471
471
return ;
472
472
}
473
473
quickPick . severity = Severity . Ignore ;
You can’t perform that action at this time.
0 commit comments