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: bugs #745

Merged
merged 22 commits into from
Aug 28, 2024
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
5dcc5c2
refactor: parameter name
bhavanakarwade Apr 15, 2024
635329a
Merge branch 'develop' of https://github.com/credebl/studio into fix/…
bhavanakarwade May 16, 2024
ac0a437
refactor: added query parameter
bhavanakarwade May 16, 2024
cfabd6a
fix: remove unnecessary code
bhavanakarwade May 16, 2024
caf8e60
fix: query param issue
bhavanakarwade May 17, 2024
03c8301
Merge branch 'develop' of https://github.com/credebl/studio into fix/…
bhavanakarwade May 24, 2024
75e6bdd
Merge branch 'develop' of https://github.com/credebl/studio into fix/…
bhavanakarwade May 24, 2024
3dab0f4
Merge branch 'develop' of https://github.com/credebl/studio into fix/…
bhavanakarwade Jun 18, 2024
f7103aa
fix: css issues
bhavanakarwade Jun 18, 2024
82cefd4
Merge branch 'develop' of https://github.com/credebl/studio into fix/…
bhavanakarwade Jun 21, 2024
67babdf
fix: create did button restrictions
bhavanakarwade Jun 21, 2024
6816754
Merge branch 'develop' of https://github.com/credebl/studio into fix/…
bhavanakarwade Jun 24, 2024
c46f1af
Merge branch 'develop' of https://github.com/credebl/studio into fix/…
bhavanakarwade Jul 11, 2024
d2575a6
fix: routes changes
bhavanakarwade Aug 26, 2024
806af77
Merge branch 'develop' of https://github.com/credebl/studio into fix/…
bhavanakarwade Aug 26, 2024
0d6eddc
Merge branch 'develop' of https://github.com/credebl/studio into fix/…
bhavanakarwade Aug 28, 2024
576b4b8
fix: popup card fixes
bhavanakarwade Aug 28, 2024
c7f7d66
Merge branch 'develop' of https://github.com/credebl/studio into fix/…
bhavanakarwade Aug 28, 2024
ac1358f
fix: remove click on card
bhavanakarwade Aug 28, 2024
bc0f693
fix: remove card click
bhavanakarwade Aug 28, 2024
8c2bf10
Merge branch 'develop' of https://github.com/credebl/studio into fix/…
bhavanakarwade Aug 28, 2024
b7472e2
fix: cred def details
bhavanakarwade Aug 28, 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
2 changes: 1 addition & 1 deletion src/commonComponents/SchemaCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const handleCheckboxChange = (checked: boolean, schemaData?: ISchemaData) => {
return (
<Card onClick={() => {

if (!props.w3cSchema && !props.isVerificationUsingEmail) {
if (!props.w3cSchema) {
props.onClickCallback(props.schemaId, props.attributes, props.issuerDid, props.created)
}

Expand Down
Loading