Skip to content

Commit 34bd98f

Browse files
authored
Merge pull request #38 from ArielMAJ/fix/#33/plots
[UPT][#33] Remove plot about 'private' repos. Fix bug for 'null' user…
2 parents d82b57e + bcbf6f4 commit 34bd98f

4 files changed

Lines changed: 3 additions & 4 deletions

File tree

api/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "api"
3-
version = "0.4.3"
3+
version = "0.4.4"
44
description = ""
55
authors = ["ArielMAJ <ariel.maj@hotmail.com>"]
66
readme = "README.md"

vue-front/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "GitHub_Viz",
3-
"version": "0.4.3",
3+
"version": "0.4.4",
44
"private": true,
55
"scripts": {
66
"serve": "vue-cli-service serve",

vue-front/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export default {
5757
},
5858
watch: {
5959
username: _.debounce(function () {
60-
if (this.username === "") {
60+
if (this.username === "" || this.username === null) {
6161
this.pieChartModalOpen = false;
6262
}
6363
}, 2000),

vue-front/src/modals/PieChartModal.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ export default {
5151
{ information: "has_projects", chartData: null },
5252
{ information: "has_wiki", chartData: null },
5353
{ information: "is_template", chartData: null },
54-
{ information: "private", chartData: null },
5554
{ information: "web_commit_signoff_required", chartData: null },
5655
],
5756
};

0 commit comments

Comments
 (0)