mirror of
https://github.com/itflow-org/itflow
synced 2026-03-01 03:14:52 +00:00
upgraded PHPMailer, AdminLTE, chartJS, Select2 Libraries
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Chart.js v2.9.2
|
||||
* Chart.js v2.9.3
|
||||
* https://www.chartjs.org
|
||||
* (c) 2019 Chart.js Contributors
|
||||
* Released under the MIT License
|
||||
@@ -3888,7 +3888,7 @@ helpers$1.extend(DatasetController.prototype, {
|
||||
}
|
||||
|
||||
if (style.fill === false || style.fill === null) {
|
||||
style.backgroundColor = 'rgba(0,0,0,0)';
|
||||
style.backgroundColor = style.borderColor;
|
||||
}
|
||||
|
||||
return style;
|
||||
@@ -11439,7 +11439,7 @@ var Scale = core_element.extend({
|
||||
*/
|
||||
_getLabels: function() {
|
||||
var data = this.chart.data;
|
||||
return this.options.labels || (this.isHorizontal() ? data.xLabels : data.yLabels) || data.labels;
|
||||
return this.options.labels || (this.isHorizontal() ? data.xLabels : data.yLabels) || data.labels || [];
|
||||
},
|
||||
|
||||
// These methods are ordered by lifecyle. Utilities then follow.
|
||||
|
||||
Reference in New Issue
Block a user