Fix code style issues with ESLint
This commit is contained in:
parent
4164deae2e
commit
14500ec4a2
|
@ -319,10 +319,11 @@ function export_file(type_file) {
|
||||||
|
|
||||||
class lotsSearcher {
|
class lotsSearcher {
|
||||||
static lots = [];
|
static lots = [];
|
||||||
|
|
||||||
static lotsSearchElement = null;
|
static lotsSearchElement = null;
|
||||||
|
|
||||||
static getListLots = () => {
|
static getListLots = () => {
|
||||||
let lotsList = document.getElementById("LotsSelector")
|
const lotsList = document.getElementById("LotsSelector")
|
||||||
if (lotsList) {
|
if (lotsList) {
|
||||||
// Apply filter to get only labels
|
// Apply filter to get only labels
|
||||||
return Array.from(lotsList.children).filter(item => item.querySelector("label"));
|
return Array.from(lotsList.children).filter(item => item.querySelector("label"));
|
||||||
|
|
Reference in New Issue