Client: Filament table is now sortable

Can only sort by 1 column for now
This commit is contained in:
Donkie
2023-07-06 15:36:10 +02:00
parent 97170719b2
commit f0403b3afb
3 changed files with 107 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
import { IVendor } from "../vendors/model";
export interface IFilament {
id: string;
id: number;
registered: string;
name?: string;
vendor?: IVendor;
@@ -16,4 +16,5 @@ export interface IFilament {
settings_extruder_temp?: number;
settings_bed_temp?: number;
color_hex?: string;
[key: string]: unknown;
}