Removes unnecessary destroy methods
This commit is contained in:
parent
4e5077364e
commit
a1e1c5d185
19 changed files with 34 additions and 214 deletions
|
|
@ -76,10 +76,10 @@ export class ColumnDetectionUtils {
|
|||
}
|
||||
|
||||
// Convert Date to YYYY-MM-DD format
|
||||
var dateString = date.toISOString().split('T')[0];
|
||||
let dateString = date.toISOString().split('T')[0];
|
||||
|
||||
// Find column that matches the date
|
||||
var column = this.columnBoundsCache.find(col => col.date === dateString);
|
||||
let column = this.columnBoundsCache.find(col => col.date === dateString);
|
||||
return column || null;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue