8000 feat: ui alert <= 30mins from deadline by greyscaled · Pull Request #1825 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: ui alert <= 30mins from deadline #1825

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

Merged
merged 4 commits into from
May 27, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Apply suggestions from code review
  • Loading branch information
greyscaled authored May 27, 2022
commit e4db833d861f77ebe3d583eb7e5df865edff9352
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ dayjs.extend(utc)
dayjs.extend(isSameOrBefore)

export const Language = {
bannerTitle: "Workspace shutdown",
bannerDetail: "Your workspace is scheduled to automatically shut down soon.",
bannerTitle: "Your workspace is scheduled to automatically shut down soon.",
}

export interface WorkspaceScheduleBannerProps {
Expand Down Expand Up @@ -43,7 +42,6 @@ export const WorkspaceScheduleBanner: React.FC<WorkspaceScheduleBannerProps> = (
return (
<Alert severity="warning">
<AlertTitle>{Language.bannerTitle}</AlertTitle>
{Language.bannerDetail}
</Alert>
)
}
Expand Down
0