- merged with develop;

- removed unused variables;
This commit is contained in:
Vitalii Kiiko
2024-11-11 14:33:30 +01:00
parent cff391ae9c
commit fd4764d119
14 changed files with 40 additions and 95 deletions

View File

@@ -2,9 +2,6 @@ import React, { useState, useEffect} from 'react';
import { __ } from '@wordpress/i18n';
import { is, uniq } from 'ramda';
// store
import { storeSet, storeGet } from '../../../../store';
// tools
import getBandoSeverity from '../../../../helpers/getBandoSeverity';
import getBandoLabel from '../../../../helpers/getBandoLabel';
@@ -97,9 +94,9 @@ const AllBandiTable = () => {
);
};
const nameBodyTemplate = (rowData) => {
/*const nameBodyTemplate = (rowData) => {
return <span>{rowData.name}</span>
}
}*/
const dateStartBodyTemplate = (rowData) => {
return getDateFromISOstring(rowData.dates[0]);