Skip to content

Commit

Permalink
chore: domain related changes in yml file (#885)
Browse files Browse the repository at this point in the history
* fix: schema route changes

Signed-off-by: bhavanakarwade <[email protected]>

* fix: refactor dev deploy yml file

Signed-off-by: bhavanakarwade <[email protected]>

* fix: refactor dev yml file

Signed-off-by: bhavanakarwade <[email protected]>

* fix: refactor domains in yml file

Signed-off-by: bhavanakarwade <[email protected]>

* fix: added validations for condition and values of predicates

Signed-off-by: bhavanakarwade <[email protected]>

* fix: unable to send proof request using connection issue

Signed-off-by: bhavanakarwade <[email protected]>

* fix: remove unnecessary code

Signed-off-by: bhavanakarwade <[email protected]>

* fix: search bar issue throughout the application

Signed-off-by: bhavanakarwade <[email protected]>

* fix: added search on connection list

Signed-off-by: bhavanakarwade <[email protected]>

* chore: did domain related changes in yml file

Signed-off-by: bhavanakarwade <[email protected]>

* fix: added roles for orglist

Signed-off-by: bhavanakarwade <[email protected]>

---------

Signed-off-by: bhavanakarwade <[email protected]>
  • Loading branch information
bhavanakarwade authored Jan 27, 2025
1 parent 4148472 commit ecc9b65
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,23 +52,23 @@ jobs:
echo "PUBLIC_POLYGON_TESTNET_URL=https://rpc-amoy.polygon.technology" >> .env
echo "PUBLIC_ECOSYSTEM_FRONT_END_URL=https://qa-ecosystem.credebl.id" >> .env
echo "PUBLIC_ECOSYSTEM_FRONT_END_URL=https://qa-ecosystem.sovio.id" >> .env
echo "PUBLIC_CREDEBL_FRONT_END_URL=https://qa.credebl.id" >> .env
echo "PUBLIC_CREDEBL_FRONT_END_URL=https://qa.sovio.id" >> .env
echo "PUBLIC_ECOSYSTEM_BASE_URL=${{ secrets.QA_PUBLIC_ECOSYSTEM_BASE_URL }}" >> .env
echo "PUBLIC_PLATFORM_DISCORD_URL=https://discord.gg/w4hnQT7NJG" >> .env
echo "PUBLIC_REDIRECTION_TARGET_URL=https://social-share.credebl.id" >> .env
echo "PUBLIC_REDIRECTION_TARGET_URL=https://social-share.sovio.id" >> .env
echo "PUBLIC_CRYPTO_PRIVATE_KEY=${{ secrets.QA_PUBLIC_CRYPTO_PRIVATE_KEY }}" >> .env
echo "PUBLIC_KEYCLOAK_MANAGEMENT_CLIENT_ID=${{ secrets.QA_PUBLIC_KEYCLOAK_MANAGEMENT_CLIENT_ID }}" >> .env
echo "PUBLIC_KEYCLOAK_MANAGEMENT_CLIENT_SECRET=${{ secrets.QA_PUBLIC_KEYCLOAK_MANAGEMENT_CLIENT_SECRET }}" >> .env
echo "PUBLIC_REDIRECT_FROM_URL=https://qa.credebl.id" >> .env
echo "PUBLIC_REDIRECT_FROM_URL=https://qa.sovio.id" >> .env
- name: Build step
run: npm install && npm run build # 📝 Update the build command(s)
Expand Down
24 changes: 24 additions & 0 deletions src/components/organization/OrganizationsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,30 @@ const OrganizationsList = () => {
<p className="text-base tracking-tight text-gray-900 dark:text-white truncate">
{org?.description}
</p>
<div className="flow-root h-auto">
<ul className="divide-y divide-gray-200 dark:divide-gray-700">
<li className="pt-2 sm:pt-3 overflow-auto">
<div className="flex items-center space-x-4">
<div className="inline-flex flex-wrap items-center text-base font-semibold text-gray-900 dark:text-white">
Role(s):
{org.roles &&
org.roles.length > 0 &&
org.roles.map((role: string, index: number) => {
return (
<span
key={index}
className="m-1 bg-primary-50 text-blue-800 text-sm font-medium mr-2 px-2.5 py-0.5 rounded dark:bg-blue-900 dark:text-blue-300"
>
{role.charAt(0).toUpperCase() +
role.slice(1)}
</span>
);
})}
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</Card>
Expand Down

0 comments on commit ecc9b65

Please sign in to comment.