diff --git a/src/app/Layout/Navigation/NavigationBar.tsx b/src/app/Layout/Navigation/NavigationBar.tsx index fd2d33db38376dd03d867d4d47e22e5031599fb8..c0c62588b616f4d29857931c21a4ec1303acd3a0 100644 --- a/src/app/Layout/Navigation/NavigationBar.tsx +++ b/src/app/Layout/Navigation/NavigationBar.tsx @@ -35,7 +35,7 @@ const NavigationBar = (): JSX.Element => { <Button startIcon={<PublicIcon></PublicIcon>} component={Link} color={'inherit'} to={'/public'} disabled={true}> Public Models </Button> - <Button startIcon={<LockOpenIcon></LockOpenIcon>} component={Link} color={'inherit'} to={'/private'} disabled={true}> + <Button startIcon={<LockOpenIcon></LockOpenIcon>} component={Link} color={'inherit'} to={'/private'}> Private Models </Button> {/* Spacer for alignment */} diff --git a/src/features/soil-editor/SoilTextEditor/SoilHighlight.ts b/src/features/soil-editor/SoilTextEditor/SoilHighlight.ts index 0344ff53e21b4f8c4704c6ac35d83ba726932bad..9a6afb972889362904a92a87ee27eb8de6416b06 100644 --- a/src/features/soil-editor/SoilTextEditor/SoilHighlight.ts +++ b/src/features/soil-editor/SoilTextEditor/SoilHighlight.ts @@ -39,6 +39,9 @@ export const soilHighlight = { "event": { pattern: /\b(critical|debug|error|if|info|warning)\b/ }, + "list": { + pattern: /\bList\b/ + }, "warning": { pattern: /<Element Not Found>/ }, diff --git a/src/features/soil-editor/SoilTextEditor/styles.css b/src/features/soil-editor/SoilTextEditor/styles.css index de66e2267b519db895589f7c606e5494f6055adb..b4d7b1f20d4542faa195bd8239cf4e463149297c 100644 --- a/src/features/soil-editor/SoilTextEditor/styles.css +++ b/src/features/soil-editor/SoilTextEditor/styles.css @@ -128,11 +128,13 @@ body { color: #A8859E } -.light-theme .token.event { +.light-theme .token.event, +.light-theme .token.list { color: #E30066 } -.dark-theme .token.event { +.dark-theme .token.event, +.dark-theme .token.list { color: #F19EB1 }