Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jamie updating the overview page #4605

Merged
merged 4 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,22 +74,7 @@
@Tags(@Tag(name = "Projects", description = "Project related operations"))
public class ProjectController {

static final String WELCOME_MESSAGE =
"""
<div>
<h2>Hey there!</h2>
<p>This is your project overview page. Use this space however you like. Not sure where to start? Here are some things you can try:</p>
<br>
<ul>
<li><strong>Upload stuff:</strong> Upload documents, models, code or datasets with the green button in the bottom left corner.</li>
<li><strong>Explore and add:</strong> Use the project selector in the top nav to switch to the Explorer where you can find documents, models and datasets that you can add to your project.</li>
<li><strong>Build a model:</strong> Create a model that fits just what you need.</li>
<li><strong>Create a workflow:</strong> Connect resources with operators so you can focus on the science and not the plumbing.</li>
</ul>
<br>
<p>Feel free to erase this text and make it your own.</p>
</div>
""";
static final String WELCOME_MESSAGE = "";
final Messages messages;
final ArtifactService artifactService;
final ModelService modelService;
Expand Down
Loading