Skip to content

Commit 9b2363c

Browse files
committed
1.0.0
1 parent ce67e20 commit 9b2363c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-github-buttons",
33
"description": "GitHub buttons component for Vue.",
4-
"version": "0.0.3",
4+
"version": "1.0.0",
55
"main": "dist/vue-github-buttons.js",
66
"author": "Saran Tanpituckpong <sarunta@gmail.com>",
77
"license": "Apache-2.0",

src/components/Button.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export default {
7272
computed: {
7373
hasCount() {
7474
let count = this.count;
75-
// Show count when count exist and greater than 0.
75+
// Show count when count exist and greater than or equal to 0.
7676
return (typeof count !== 'undefined') && (count != null) && (count >= 0);
7777
},
7878
hasCountLink() {

0 commit comments

Comments
 (0)