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 d82b57e commit 503e2bdCopy full SHA for 503e2bd
2 files changed
vue-front/src/App.vue
@@ -57,7 +57,7 @@ export default {
57
},
58
watch: {
59
username: _.debounce(function () {
60
- if (this.username === "") {
+ if (this.username === "" || this.username === null) {
61
this.pieChartModalOpen = false;
62
}
63
}, 2000),
vue-front/src/modals/PieChartModal.vue
@@ -51,7 +51,6 @@ export default {
51
{ information: "has_projects", chartData: null },
52
{ information: "has_wiki", chartData: null },
53
{ information: "is_template", chartData: null },
54
- { information: "private", chartData: null },
55
{ information: "web_commit_signoff_required", chartData: null },
56
],
};
0 commit comments