Compare commits
4 Commits
feature/82
...
bug/92-swi
| Author | SHA1 | Date | |
|---|---|---|---|
| a866480b47 | |||
| fc5811c3b6 | |||
| 9833bc6593 | |||
| 8d1842efa7 |
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "api",
|
||||
"version": "1.3.1",
|
||||
"version": "1.4.0",
|
||||
"description": "",
|
||||
"author": "",
|
||||
"private": true,
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "app",
|
||||
"private": true,
|
||||
"version": "1.3.1",
|
||||
"version": "1.4.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
||||
@@ -52,7 +52,7 @@ const Flights = () => {
|
||||
<Skeleton height={300} />
|
||||
</Grid>
|
||||
<Grid size={12}>
|
||||
{[...Array(6)].map((_element, index) => {
|
||||
{[...Array(4)].map((_element, index) => {
|
||||
return (
|
||||
<>
|
||||
<Skeleton height={20} width={300} />
|
||||
|
||||
@@ -6,7 +6,8 @@ import {
|
||||
import { ILogbookEntry } from './ILogbookEntry';
|
||||
|
||||
const columnTotal = (info: HeaderContext<ILogbookEntry, unknown>): number => {
|
||||
const values: number[] = info.table.getFilteredRowModel().rows.map((row: any) => Number(row.getValue(info.column.id))).filter((value: any) => !Number.isNaN(value));
|
||||
const blah = info.table
|
||||
const values: number[] = info.table.getPaginationRowModel().rows.map((row: any) => Number(row.getValue(info.column.id))).filter((value: any) => !Number.isNaN(value));
|
||||
let total: number = 0;
|
||||
|
||||
if (values.length > 0) {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@noahspan/flying",
|
||||
"version": "1.3.0",
|
||||
"version": "1.4.0",
|
||||
"scripts": {
|
||||
"start": "concurrently 'npm run start:azure -w api' 'wait-on tcp:0.0.0.0:7071 && npm run dev -w app'",
|
||||
"format": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\"",
|
||||
|
||||
Reference in New Issue
Block a user