Skip to content

Commit 503e2bd

Browse files
committed
[UPT][#33] Remove plot about 'private' repos. Fix bug for 'null' username.
1 parent d82b57e commit 503e2bd

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

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)