Skip to content

Commit

Permalink
Merge pull request #435 from CirclesUBI/feature/app-484-opening-own-s…
Browse files Browse the repository at this point in the history
…hop-errors-when-in-shop-context222

cdi pickup fix
  • Loading branch information
codeho authored Sep 28, 2023
2 parents 2b3dc1a + 1a36de9 commit 26043fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion shell/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@o-platform/shell",
"version": "1.0.5-1",
"version": "1.0.5-2",
"author": "Daniel Janz, Thorsten Schau (Gnosis Service GmbH); Samuel Andert (Basic Income Lab GmbH)",
"license": "AGPL-3.0-or-later",
"description": "CirclesUBI Indonesia web app",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ onMount(async () => {
const currentDateIndex = new Date().getDay();
// adding a nice comment so this will get picked back up by the deployment
isMyShop = $me.circlesAddress === business.circlesAddress || $me.circlesAddress === shopOwner[0].circlesAddress;
availableActions.push({
Expand Down Expand Up @@ -278,15 +279,15 @@ async function shareLink() {
</div>
{/if}
{#if shopOwner && shopOwner.length}
<div class="flex pt-4 mt-4 text-default border-t-2">
<div class="flex pt-4 mt-4 border-t-2 text-default">
<section class="justify-center mb-2">
<div class="flex flex-col w-full pt-2 space-y-1">
<div class="font-bold text-left text-default text-2xs">
<Label key="dapps.o-contacts.pages.profile.members" />
</div>
<div class="flex flex-row flex-wrap mt-2">
{#each shopOwner as shopOwnerProfile}
<div class="mt-2 mr-2 flex items-center">
<div class="flex items-center mt-2 mr-2">
<UserImage profile="{shopOwnerProfile}" />
<div class="ml-3">{shopOwnerProfile.displayName}</div>
</div>
Expand Down

0 comments on commit 26043fe

Please sign in to comment.