Add sorting by column and fix page reload issue.
This commit is contained in:
parent
ed29b96d45
commit
6057ad5a2a
5 changed files with 228 additions and 53 deletions
server/types
|
@ -562,6 +562,9 @@ export function isNodesFilter(arg: unknown): arg is NodesFilter {
|
|||
);
|
||||
}
|
||||
|
||||
export type SearchTerm = string & { readonly __tag: unique symbol }
|
||||
export const isSearchTerm = isString;
|
||||
|
||||
export enum MonitoringSortField {
|
||||
ID = 'id',
|
||||
HOSTNAME = 'hostname',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue