ui: cleanup logs
This commit is contained in:
parent
817f039ddc
commit
63085d6ff1
4 changed files with 0 additions and 4 deletions
|
|
@ -31,7 +31,6 @@ function BigNumChart(props: Props) {
|
|||
series: data.namesMap[i],
|
||||
});
|
||||
}
|
||||
console.log(values, data, compData)
|
||||
return (
|
||||
<div className={'flex justify-around gap-2 w-full'} style={{ height: 240 }}>
|
||||
{values.map((val, i) => (
|
||||
|
|
|
|||
|
|
@ -31,7 +31,6 @@ interface Props {
|
|||
function WidgetDatatable(props: Props) {
|
||||
const [tableProps, setTableProps] =
|
||||
useState<TableProps['columns']>(initTableProps);
|
||||
// console.log(params.density / 7, data.chart)
|
||||
const data = props.data;
|
||||
|
||||
const [showTable, setShowTable] = useState(false);
|
||||
|
|
|
|||
|
|
@ -41,7 +41,6 @@ function FilterValue(props: Props) {
|
|||
};
|
||||
|
||||
const onChange = (e: any, item: any, valueIndex: any) => {
|
||||
console.log('item', item, valueIndex);
|
||||
const newValues = filter.value.map((_: any, _index: any) => {
|
||||
if (_index === valueIndex) {
|
||||
return item;
|
||||
|
|
|
|||
|
|
@ -296,7 +296,6 @@ export default class Widget {
|
|||
setData(data: { timestamp: number, [seriesName: string]: number}[], period: any, isComparison?: boolean) {
|
||||
const _data: any = {};
|
||||
if (isComparison) {
|
||||
console.log(data)
|
||||
data.forEach((point, i) => {
|
||||
Object.keys(point).forEach((key) => {
|
||||
if (key === 'timestamp') return;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue