refactor: increase base height for chart widget

This commit is contained in:
Shivam Mishra 2020-06-29 19:27:22 +05:30
parent 40674dfa23
commit fa4161cc87

View file

@ -6,7 +6,7 @@ frappe.provide("frappe.dashboards.chart_sources");
export default class ChartWidget extends Widget {
constructor(opts) {
super(opts);
this.height = this.height || 240;
this.height = this.height || 300;
}
get_config() {