File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
flutter-idea/src/io/flutter/module Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -163,14 +163,14 @@ private void showProjectInProjectWindow(@NotNull Project project) {
163
163
private String validateSettings (FlutterCreateAdditionalSettings settings ) {
164
164
final String description = settings .getDescription ();
165
165
if (description != null && description .contains (": " )) {
166
- return FlutterBundle .message ("npw_invalid_desc_error" );
166
+ return FlutterBundle .message ("npw_invalid_desc_error" , description );
167
167
}
168
168
final String org = settings .getOrg ();
169
169
if (org == null ) {
170
170
return null ;
171
171
}
172
172
if (StringUtil .endsWith (org , "." )) {
173
- return FlutterBundle .message ("npw_invalid_org_error" );
173
+ return FlutterBundle .message ("npw_invalid_org_error" , org );
174
174
}
175
175
if (mySettingsFields .shouldIncludePlatforms () && !settings .isSomePlatformSelected ()) {
176
176
return FlutterBundle .message ("npw_none_selected_error" );
You can’t perform that action at this time.
0 commit comments