Skip to content
This repository has been archived by the owner on Nov 20, 2020. It is now read-only.

Commit

Permalink
fix project update message
Browse files Browse the repository at this point in the history
  • Loading branch information
francescou committed May 20, 2018
1 parent 186bdf1 commit 93510cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/scripts/controllers/create.js
Expand Up @@ -54,7 +54,7 @@ angular.module('composeUiApp')
yml: yml,
env: env
}, function (data) {
alertify.success('created project: ' + name + ', path: ' + data.path);
alertify.success((isEdit ? 'updated project' : 'created project: ') + name + ', path: ' + data.path);
$scope.$parent.reload(false);
$location.path('project/' + name);

Expand Down

0 comments on commit 93510cb

Please sign in to comment.