Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit

Permalink
Merge pull request #1986 from t-tajiri/feature/1974_visitorsbarchart_…
Browse files Browse the repository at this point in the history
…type_error

fix: type error in VisitorBarChart (新宿区のグラフで利用)
  • Loading branch information
halsk authored Mar 20, 2020
2 parents 77cfe7b + 6dbb00e commit 9f6f416
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion components/VisitorsBarChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,11 @@ const options: ThisTypedComponentOptionsWithRecordProps<
required: false,
default: ''
},
chartData: [],
chartData: {
type: Array,
required: true,
default: []
},
date: {
type: String,
required: false,
Expand Down

0 comments on commit 9f6f416

Please sign in to comment.