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

Consultation update page form UI updated #9074

Closed
wants to merge 46 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
2be148b
Consultation update page form UI updated
modamaan Nov 10, 2024
d78ddf9
Lint issues solved
modamaan Nov 10, 2024
5cfc314
Badge component coderabbitai suggestion
modamaan Nov 10, 2024
6ac3d93
card component coderabbitai suggestion
modamaan Nov 10, 2024
f713b4f
lint issue again solved
modamaan Nov 10, 2024
860cd70
CriticalCarePreview updated
modamaan Nov 12, 2024
6e7a497
lucid-react icon removed deploy issue
modamaan Nov 12, 2024
ab7ff27
npm lucid-react uninstalled
modamaan Nov 12, 2024
3c5fcc9
Merge branch 'develop' into issues/9067/edit-form_ui
modamaan Nov 23, 2024
bfd8451
failing iisue solved
modamaan Nov 24, 2024
64f99af
Save local changes to ShiftDetails.tsx
modamaan Nov 24, 2024
1f27622
Merge branch 'issues/9067/edit-form_ui' of https://github.com/modamaa…
modamaan Nov 24, 2024
3dbc4f6
Save local changes to ShiftDetails.tsx
modamaan Nov 24, 2024
87d1cc6
Merge remote-tracking branch 'upstream/develop' into issues/9067/edit…
modamaan Nov 30, 2024
c1a0abe
merge conflict
modamaan Nov 30, 2024
4705c41
merge conflict
modamaan Dec 6, 2024
dfcca36
code corrected
modamaan Dec 6, 2024
d2bb301
custom separator removed
modamaan Dec 6, 2024
d4c350c
Lint issue solved
modamaan Dec 6, 2024
075c4bf
custom component src/components/ui/separator.tsx removed
modamaan Dec 6, 2024
bfac22a
Ensure the box is not displayed when there is no data
modamaan Dec 6, 2024
fc3cbc8
Cypress issue
modamaan Dec 7, 2024
b1f9151
Cypress (3) issue
modamaan Dec 7, 2024
c39ba72
Cypress (3) issue again
modamaan Dec 7, 2024
7838528
Merge remote-tracking branch 'upstream/develop' into issues/9067/edit…
modamaan Dec 11, 2024
ae15064
Card component
modamaan Dec 11, 2024
e27d9c1
Tessting deploy
modamaan Dec 11, 2024
bb36216
cypress testing
modamaan Dec 13, 2024
37d2f26
Merge remote-tracking branch 'upstream/develop' into issues/9067/edit…
modamaan Dec 13, 2024
46e982e
Merge branch 'develop' into issues/9067/edit-form_ui
modamaan Dec 13, 2024
5334d0b
Badge component issue
modamaan Dec 13, 2024
df8150e
Merge remote-tracking branch 'upstream/develop' into issues/9067/edit…
modamaan Dec 13, 2024
264de3e
Merge branch 'issues/9067/edit-form_ui' of https://github.com/modamaa…
modamaan Dec 13, 2024
31e6ab7
Cypress timeout issue
modamaan Dec 13, 2024
7149c93
Cypress timeout issue try
modamaan Dec 13, 2024
318e688
removed changes causes cypress test issue
modamaan Dec 15, 2024
5da968e
patientLogupdate changes removed
modamaan Dec 15, 2024
94728f1
changes removed
modamaan Dec 15, 2024
7ac0e8d
Merge remote-tracking branch 'upstream/develop' into issues/9067/edit…
modamaan Dec 15, 2024
a60f993
Merge branch 'develop' into issues/9067/edit-form_ui
modamaan Dec 15, 2024
d146152
Merge branch 'issues/9067/edit-form_ui' of https://github.com/modamaa…
modamaan Dec 15, 2024
5734e2e
Merge remote-tracking branch 'upstream/develop' into issues/9067/edit…
modamaan Dec 17, 2024
82a7a69
badge ui component corrected
modamaan Dec 17, 2024
66a8b0b
cypress timeout
modamaan Dec 17, 2024
933632c
cypress timeout increased
modamaan Dec 17, 2024
2e4ad9c
cypress timeout issue
modamaan Dec 17, 2024
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
Next Next commit
Card component
modamaan committed Dec 11, 2024

Verified

This commit was signed with the committer’s verified signature.
gitaalekhyapaul Gita Alekhya Paul
commit ae15064925e058471d93717f3e9c0ce3e84da41c
12 changes: 6 additions & 6 deletions src/components/ui/card.tsx
Original file line number Diff line number Diff line change
@@ -30,10 +30,10 @@ const CardHeader = React.forwardRef<
CardHeader.displayName = "CardHeader";

const CardTitle = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
HTMLHeadingElement,
React.HTMLAttributes<HTMLHeadingElement>
>(({ className, ...props }, ref) => (
<div
<h3
ref={ref}
className={cn("font-semibold leading-none tracking-tight", className)}
{...props}
@@ -42,10 +42,10 @@ const CardTitle = React.forwardRef<
CardTitle.displayName = "CardTitle";

const CardDescription = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
HTMLParagraphElement,
React.HTMLAttributes<HTMLParagraphElement>
>(({ className, ...props }, ref) => (
<div
<p
ref={ref}
className={cn("text-sm text-gray-500 dark:text-gray-400", className)}
{...props}