-
Notifications
You must be signed in to change notification settings - Fork 811
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
Add created at to workflow runs table #645
Conversation
…src/' <!-- ELLIPSIS_HIDDEN --> | 🚀 | This description was created by [Ellipsis](https://www.ellipsis.dev) for commit f6bc5e993ac09951a9a18b2c91bfde50b76a1281 | |--------|--------| ### Summary: Added 'Created At' column to workflow runs table in `Workflows` component, displaying formatted creation time. **Key points**: - Added 'Created At' column to workflow runs table in `skyvern-frontend/src/routes/workflows/Workflows.tsx`. - Utilized `basicTimeFormat` from `@/util/timeFormat` to format the creation time. - Adjusted column widths and colspan values to accommodate the new column. ---- Generated with ❤️ by [ellipsis.dev](https://www.ellipsis.dev) <!-- ELLIPSIS_HIDDEN -->
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.
👍 Looks good to me! Reviewed everything up to f142364 in 26.262783 seconds
More details
- Looked at
67
lines of code in1
files - Skipped
0
files when reviewing. - Skipped posting
1
drafted comments based on config settings.
1. skyvern-frontend/src/routes/workflows/Workflows.tsx:160
- Draft comment:
Ensure that the new column widths are balanced and provide a good user experience. Consider testing with various screen sizes and content lengths to verify that the table remains readable and functional. - Reason this comment was not posted:
Confidence changes required:33%
The PR adds a new column 'Created At' to the workflow runs table. The column widths have been adjusted to accommodate the new column. The new column uses thebasicTimeFormat
function to format the creation time of each workflow run. The PR seems to correctly implement the feature as described in the PR description. However, the column width adjustments might need a review to ensure they are balanced and provide a good user experience.
Workflow ID: wflow_KE6ZWwMHsus6vmh9
You can customize Ellipsis with 👍 / 👎 feedback, review rules, user-specific overrides, quiet
mode, and more.
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.
❌ Changes requested. Incremental review on f142364 in 1.0 minute and 8.122022000000001 seconds
More details
- Looked at
66
lines of code in1
files - Skipped
0
files when reviewing. - Skipped posting
0
drafted comments based on config settings.
Workflow ID: wflow_AWudgo4cPH1QYgw7
Want Ellipsis to fix these issues? Tag @ellipsis-dev
in a comment. You can customize Ellipsis with 👍 / 👎 feedback, review rules, user-specific overrides, quiet
mode, and more.
<TableHead className="w-1/4">Status</TableHead> | ||
<TableHead className="w-1/5">Workflow Run ID</TableHead> | ||
<TableHead className="w-1/7">Status</TableHead> | ||
<TableHead className="w-1/4">Created At</TableHead> |
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 total width of the columns now exceeds 100%, which can cause layout issues. Please adjust the column widths so that their combined width sums up to 100%.
Summary:
Added 'Created At' column to workflow runs table in
Workflows
component, displaying formatted creation time.Key points:
skyvern-frontend/src/routes/workflows/Workflows.tsx
.basicTimeFormat
from@/util/timeFormat
to format the creation time.Generated with ❤️ by ellipsis.dev