diff --git a/packages/client/hmi-client/src/components/project/tera-project-overview-editor.vue b/packages/client/hmi-client/src/components/project/tera-project-overview-editor.vue index 006c2198c1..aa0b9c5b43 100644 --- a/packages/client/hmi-client/src/components/project/tera-project-overview-editor.vue +++ b/packages/client/hmi-client/src/components/project/tera-project-overview-editor.vue @@ -73,17 +73,23 @@ onUnmounted(() => { min-height: 100%; display: flex; flex-direction: column; + border-top-left-radius: 0px !important; } :deep(.p-editor-content) { flex-grow: 1; } -:deep(.p-editor-container .p-editor-toolbar) { +.p-editor-container:deep(.p-editor-toolbar) { border-radius: 0px; border-color: var(--surface-border-light) !important; border-top: none !important; } +.p-editor-container:deep(.p-editor-content) { + border-radius: 0px; + border-color: var(--surface-border-light) !important; + border: none !important; +} :deep(.ql-picker-label) { font-family: var(--font-family); diff --git a/packages/server/src/main/java/software/uncharted/terarium/hmiserver/controller/dataservice/ProjectController.java b/packages/server/src/main/java/software/uncharted/terarium/hmiserver/controller/dataservice/ProjectController.java index 25c5f371ae..35a8f6f085 100644 --- a/packages/server/src/main/java/software/uncharted/terarium/hmiserver/controller/dataservice/ProjectController.java +++ b/packages/server/src/main/java/software/uncharted/terarium/hmiserver/controller/dataservice/ProjectController.java @@ -74,22 +74,7 @@ @Tags(@Tag(name = "Projects", description = "Project related operations")) public class ProjectController { - static final String WELCOME_MESSAGE = - """ -
-

Hey there!

-

This is your project overview page. Use this space however you like. Not sure where to start? Here are some things you can try:

-
- -
-

Feel free to erase this text and make it your own.

-
- """; + static final String WELCOME_MESSAGE = ""; final Messages messages; final ArtifactService artifactService; final ModelService modelService;