Fix tag notification messages
Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/87f0ec67 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/87f0ec67 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/87f0ec67 Branch: refs/heads/vpc Commit: 87f0ec6796b841df4ab5f048d67f7389835615c4 Parents: a59afac Author: Brian Federle <[email protected]> Authored: Tue Jul 24 12:18:41 2012 -0700 Committer: Brian Federle <[email protected]> Committed: Tue Jul 24 15:25:57 2012 -0700 ---------------------------------------------------------------------- ui/scripts/sharedFunctions.js | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/87f0ec67/ui/scripts/sharedFunctions.js ---------------------------------------------------------------------- diff --git a/ui/scripts/sharedFunctions.js b/ui/scripts/sharedFunctions.js index 535df56..12d3498 100644 --- a/ui/scripts/sharedFunctions.js +++ b/ui/scripts/sharedFunctions.js @@ -641,7 +641,7 @@ cloudStack.api = { args.response.success({ _custom: { jobId: json.createtagsresponse.jobid }, notification: { - desc: 'Add tag for instance', + desc: 'Add tag for ' + resourceType, poll: pollAsyncJobResult } }); @@ -665,7 +665,7 @@ cloudStack.api = { args.response.success({ _custom: { jobId: json.deletetagsresponse.jobid }, notification: { - desc: 'Remove tag for instance', + desc: 'Remove tag for ' + resourceType, poll: pollAsyncJobResult } });
