-
Notifications
You must be signed in to change notification settings - Fork 9
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
Ms2/deployment view #337
Ms2/deployment view #337
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should also check the ability, but you can do it in a future PR
src/management-system-v2/app/(dashboard)/[environmentId]/executions/page.tsx
Outdated
Show resolved
Hide resolved
return 0; | ||
}); | ||
|
||
const openFolder = async (id: string) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should give feedback if something goes wrong, maybe do it in a sepparate PR after #340
src/management-system-v2/app/(dashboard)/[environmentId]/executions/deployments-modal.tsx
Outdated
Show resolved
Hide resolved
<> | ||
<ElementList | ||
data={processes} | ||
columns={breakpoint.xl ? selectedColumns : mobileColumns} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no need to do this, the responsive key on each column can blend that column out, you could just use one big column list.
...ment-system-v2/app/(dashboard)/[environmentId]/executions/deployment-selection-icon-view.tsx
Outdated
Show resolved
Hide resolved
src/management-system-v2/app/(dashboard)/[environmentId]/engines/engines-modal.tsx
Outdated
Show resolved
Hide resolved
src/management-system-v2/app/(dashboard)/[environmentId]/engines/page.tsx
Outdated
Show resolved
Hide resolved
pagination: { pageSize: 10, position: ['bottomCenter'] }, | ||
}} | ||
data={engines} | ||
columns={breakpoint.xl ? selectedColumns : mobileColumns} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no need to have to separate lists, you can just set the responsive
property on each column accordingly.
✅ Successfully created Preview Deployment. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The columns should still be refactored I think, but since it is also like that in the process list I think it is fine
Summary
Added view for deployments and engines
Details