We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce67e20 commit 9b2363cCopy full SHA for 9b2363c
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "vue-github-buttons",
3
"description": "GitHub buttons component for Vue.",
4
- "version": "0.0.3",
+ "version": "1.0.0",
5
"main": "dist/vue-github-buttons.js",
6
"author": "Saran Tanpituckpong <sarunta@gmail.com>",
7
"license": "Apache-2.0",
src/components/Button.vue
@@ -72,7 +72,7 @@ export default {
72
computed: {
73
hasCount() {
74
let count = this.count;
75
- // Show count when count exist and greater than 0.
+ // Show count when count exist and greater than or equal to 0.
76
return (typeof count !== 'undefined') && (count != null) && (count >= 0);
77
},
78
hasCountLink() {
0 commit comments