Fix sorting after merge.
This commit is contained in:
parent
4602aaa871
commit
22d7755215
3 changed files with 21 additions and 20 deletions
server/shared/types
|
@ -573,7 +573,7 @@ export function isMonitoringResponse(arg: unknown): arg is MonitoringResponse {
|
|||
}
|
||||
|
||||
// noinspection JSUnusedGlobalSymbols
|
||||
enum NodeSortFieldEnum {
|
||||
export enum NodeSortFieldEnum {
|
||||
HOSTNAME = "hostname",
|
||||
NICKNAME = "nickname",
|
||||
EMAIL = "email",
|
||||
|
@ -632,7 +632,7 @@ export function isNodesFilter(arg: unknown): arg is NodesFilter {
|
|||
);
|
||||
}
|
||||
|
||||
export type SearchTerm = string & { readonly __tag: unique symbol }
|
||||
export type SearchTerm = string & { readonly __tag: unique symbol };
|
||||
export const isSearchTerm = isString;
|
||||
|
||||
export enum MonitoringSortField {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue