-
Notifications
You must be signed in to change notification settings - Fork 20
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
fixes #1466
fixes #1466
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
<link | ||
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap" | ||
rel="stylesheet" type="text/css" /> | ||
<link rel="stylesheet" href="https://unpkg.com/@egovernments/digit-ui-css@1.8.2-beta.35/dist/index.css" /> | ||
<link rel="stylesheet" href="https://unpkg.com/@egovernments/digit-ui-css@1.8.2-beta.36/dist/index.css" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification Action Required: Verify Availability and Documentation of CSS Version 1.8.2-beta.36 The update to
🔗 Analysis chainApprove CSS version update with suggestions. The update of the @egovernments/digit-ui-css package from version 1.8.2-beta.35 to 1.8.2-beta.36 looks good and aligns with the PR objectives mentioning a CSS update. However, consider the following suggestions:
To verify the intentionality and impact of this change, you can run the following script: 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check for other occurrences of the CSS version and verify the changelog
# Test 1: Check for other occurrences of the old version
echo "Checking for other occurrences of version 1.8.2-beta.35:"
rg --type html "1\.8\.2-beta\.35"
# Test 2: Check for partial matches of the new version (in case it's used elsewhere)
echo "Checking for partial matches of version 1.8.2-beta.36:"
rg --type html "1\.8\.2-beta\.36"
# Test 3: Attempt to fetch and display the changelog (if available)
echo "Attempting to fetch changelog:"
curl -s "https://unpkg.com/@egovernments/digit-ui-css@1.8.2-beta.36/CHANGELOG.md" || echo "Changelog not found or not accessible"
Length of output: 667 |
||
<link rel="stylesheet" href="https://unpkg.com/@egovernments/digit-ui-components-css@0.0.2-beta.34/dist/index.css"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#00bcd1" /> | ||
|
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.
🧹 Nitpick (assertive)
LGTM: Proper implementation of text translation
The changes correctly implement internationalization for the component's content using the t() function. This is consistent with the PR objective of adding local functionality.
Consider using template literals for better readability when combining translated text with other elements:
Also applies to: 21-21