Skip to content
This repository has been archived by the owner on Aug 5, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
small fix
  • Loading branch information
Genki Sugawara committed Jun 1, 2012
1 parent 7b859f3 commit 5f4a3bb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ec2ui/content/ec2ui/utils.js
Expand Up @@ -1229,7 +1229,11 @@ function secondsToYears(secs) {

function __addNameTagToModel__(tag, model) {
var kvs = tag.split(/\s*,\s*/);
model.name = '';

if (!model instanceof AMI) {
model.name = '';
}

model.comment = '';

for (var i = 0; i < kvs.length; i++) {
Expand Down

0 comments on commit 5f4a3bb

Please sign in to comment.