started working on Dashboard UI sorting and naming

This commit is contained in:
Jason Kulatunga
2022-05-12 07:35:38 -07:00
parent 3b137964fc
commit 5899bf2026
5 changed files with 124 additions and 14 deletions
@@ -11,6 +11,11 @@ export interface AppConfig
{
theme: Theme;
layout: Layout;
// Dashboard options
dashboardDisplay: string;
dashboardSort: string;
}
/**
@@ -23,6 +28,9 @@ export interface AppConfig
*/
export const appConfig: AppConfig = {
theme : "light",
layout: "material"
layout: "material",
dashboardDisplay: "name",
dashboardSort: "status",
};