Skip to content

Commit

Permalink
clean up console messages
Browse files Browse the repository at this point in the history
  • Loading branch information
billyc committed Jan 28, 2022
1 parent f750ca9 commit 91ff514
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/charts/pie.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default class VueComponent extends Vue {
private updateChartSimple() {
const allRows = this.dataSet.allRows || {}
console.log({ allRows })
this.data[0].labels = Object.keys(allRows)
this.data[0].values = Object.values(allRows)
}
Expand Down
1 change: 0 additions & 1 deletion src/js/HTTPFileSystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ class SVNFileSystem {

const lines = data.split('\n')
for (const line of lines) {
console.log(line)
const href = line.indexOf('<li><a href="')
if (href < 0) continue
const entry = line.match(regex)
Expand Down

0 comments on commit 91ff514

Please sign in to comment.