Skip to content
This repository was archived by the owner on Apr 23, 2025. It is now read-only.

Commit 290172f

Browse files
authored
fix: texts in notifications for creating & created (#714,#716) (#720)
Signed-off-by: Andre Dietisheim <[email protected]>
1 parent 4a620ba commit 290172f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/jboss/tools/intellij/openshift/actions/project/CreateProjectAction.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,11 @@ private void doActionPerformed(final Point location, @NotNull final Odo odo, Pro
114114

115115
private void createProject(String newProject, @NotNull Odo odo) {
116116
String kind = odo.getNamespaceKind();
117-
Notification notification = NotificationUtils.notifyInformation("Create " + kind, "Creating " + kind.toLowerCase() + " newProject");
117+
Notification notification = NotificationUtils.notifyInformation("Create " + kind, "Creating " + kind.toLowerCase() + " " + newProject);
118118
try {
119119
odo.createProject(newProject);
120120
notification.expire();
121-
NotificationUtils.notifyInformation("Create " + kind, kind + newProject + " successfully created");
121+
NotificationUtils.notifyInformation("Create " + kind, kind + " " + newProject + " successfully created");
122122
sendTelemetryResults(TelemetryResult.SUCCESS);
123123
} catch (IOException | CompletionException e) {
124124
notification.expire();

0 commit comments

Comments
 (0)