diff options
| author | sowgro <tpoke.ferrari@gmail.com> | 2025-04-01 19:44:28 -0400 |
|---|---|---|
| committer | sowgro <tpoke.ferrari@gmail.com> | 2025-04-01 19:44:28 -0400 |
| commit | 734d3d380cd70e87474adebedec5e230959bcf81 (patch) | |
| tree | dde3f03696a977b300f2ed4be824fcbc909e203e /ufund-ui/src/app/models | |
| parent | 0b49430e3b0a5cc14521db58af19dafa5384c3c4 (diff) | |
| download | JellySolutions-734d3d380cd70e87474adebedec5e230959bcf81.tar.gz JellySolutions-734d3d380cd70e87474adebedec5e230959bcf81.tar.bz2 JellySolutions-734d3d380cd70e87474adebedec5e230959bcf81.zip | |
Make nav bar buttons only show conditionally
Diffstat (limited to '')
| -rw-r--r-- | ufund-ui/src/app/models/User.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ufund-ui/src/app/models/User.ts b/ufund-ui/src/app/models/User.ts index e6848fa..d7d67b5 100644 --- a/ufund-ui/src/app/models/User.ts +++ b/ufund-ui/src/app/models/User.ts @@ -1,6 +1,6 @@ export enum userType { - HELPER, - MANAGER + HELPER = "HELPER", + MANAGER = "MANAGER" } export interface User { |
