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

fix(dcellar-web-ui): update renewal notification time to 7 days #400

Merged
merged 2 commits into from
Oct 10, 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
12 changes: 12 additions & 0 deletions apps/dcellar-web-ui/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
{
"name": "dcellar-web-ui",
"entries": [
{
"version": "1.8.2",
"tag": "dcellar-web-ui_v1.8.2",
"date": "Thu, 10 Oct 2024 12:15:36 GMT",
"comments": {
"patch": [
{
"comment": "Fix the background color of the renewal notification bar"
}
]
}
},
{
"version": "1.8.1",
"tag": "dcellar-web-ui_v1.8.1",
Expand Down
9 changes: 8 additions & 1 deletion apps/dcellar-web-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log - dcellar-web-ui

This log was last generated on Thu, 10 Oct 2024 09:53:45 GMT and should not be manually modified.
This log was last generated on Thu, 10 Oct 2024 12:15:36 GMT and should not be manually modified.

## 1.8.2
Thu, 10 Oct 2024 12:15:36 GMT

### Patches

- Fix the background color of the renewal notification bar

## 1.8.1
Thu, 10 Oct 2024 09:53:45 GMT
Expand Down
2 changes: 1 addition & 1 deletion apps/dcellar-web-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dcellar-web-ui",
"version": "1.8.1",
"version": "1.8.2",
"private": false,
"scripts": {
"dev": "node ./scripts/dev.js -p 3200",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export const RenewalNotification = ({ address }: RenewalNotificationProps) => {
<Flex
key={index}
color={item.type === 'danger' ? '#CA300E' : 'readable.label-normal'}
bgColor={item.type === 'danger' ? 'rgba(238, 57, 17, 0.1)' : 'opacity3'}
bgColor={item.type === 'danger' ? 'rgba(238, 57, 17, 0.1)' : 'opacity5'}
borderRadius={4}
padding={'8px 12px'}
gap={12}
Expand Down
Loading