Skip to content

Commit

Permalink
normalize label behaviour (#202)
Browse files Browse the repository at this point in the history
Thanks for spotting and fixing this @sakazuki
  • Loading branch information
sakazuki authored and dceejay committed Nov 15, 2017
1 parent 298e6e6 commit e3f7dc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/aws.html
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
icon: "amazon.png",
align: "right",
label: function() {
return this.bucket ? "s3 "+this.bucket : "s3";
return this.name || this.bucket ? "s3 "+this.bucket : "s3";
}
});
</script>
Expand Down

0 comments on commit e3f7dc3

Please sign in to comment.