Skip to content

Commit 0b2144c

Browse files
authored
Merge pull request #98 from gitopia/buxy/general-fixes
Bug fixes
2 parents ff5f3cb + 30889bb commit 0b2144c

33 files changed

Lines changed: 1765 additions & 1762 deletions

.env.development

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
BASE_ADDRESS=localhost
1+
BASE_ADDRESS=fazabaza
22
NEXT_PUBLIC_API_URL=http://$BASE_ADDRESS:1317
33
NEXT_PUBLIC_RPC_URL=http://$BASE_ADDRESS:26657
44
NEXT_PUBLIC_WS_URL=ws://$BASE_ADDRESS:26657/websocket
55
NEXT_PUBLIC_FAUCET_URL=http://$BASE_ADDRESS:4500
66
NEXT_PUBLIC_IMAGES_URL=http://localhost:3000
77
NEXT_PUBLIC_CURRENCY_TOKEN=tlore
88
NEXT_PUBLIC_ADVANCE_CURRENCY_TOKEN=utlore
9-
NEXT_PUBLIC_OBJECTS_URL=http://$BASE_ADDRESS:5000
9+
NEXT_PUBLIC_OBJECTS_URL=http://$BASE_ADDRESS:5001
1010
NEXT_PUBLIC_EXPLORER_URL=http://explorer.$BASE_ADDRESS
1111
NEXT_PUBLIC_DOCS_URL=http://docs.$BASE_ADDRESS
1212
NEXT_PUBLIC_FORUM_URL=http://forum.$BASE_ADDRESS
1313
NEXT_PUBLIC_ROADMAP_URL=http://forum.$BASE_ADDRESS
1414
NEXT_PUBLIC_HEADER_MESSAGE=The product is in beta. Any changes you make will not persist and maybe reset.
15-
NEXT_PUBLIC_GITOPIA_ADDRESS=
15+
NEXT_PUBLIC_GITOPIA_ADDRESS=faza1
1616
NEXT_PUBLIC_NETWORK_RELEASE_NOTES=
1717
NEXT_PUBLIC_GAS_PRICE=0.001utlore
18+
NEXT_PUBLIC_GIT_SERVER_WALLET_ADDRESS=gitopia1pl822l759d2cqe2ntvuhla29rfthpgs29lmz7x
1819
NEXT_PUBLIC_PLAUSIBLE_DOMAIN=$BASE_ADDRESS
19-
NEXT_PUBLIC_GIT_SERVER_WALLET_ADDRESS=
2020
NEXT_PUBLIC_GRAPHQL_HTTP_URL=http://$BASE_ADDRESS:8080/v1/graphql
21-
NEXT_PUBLIC_STORAGE_BRIDGE_WALLET_ADDRESS=
21+
NEXT_PUBLIC_STORAGE_BRIDGE_WALLET_ADDRESS=gitopia1uqsv434cjcms08qpznpky3fdwg6f8lzfy9g0hz

components/account/daoHeader.js

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,34 @@ function AccountDaoHeader(props) {
2626
}, [props.dao.address, props.selectedAddress]);
2727

2828
return (
29-
<div className="flex flex-1 mb-8 items-start">
29+
<div className="flex flex-col sm:flex-row mb-8 items-start">
3030
<DaoAvatar dao={props.dao} isEditable={isEditable} refresh={refresh} />
31-
<div className="flex-1 max-w-xl pl-12">
31+
<div className="flex-1 max-w-2xl sm:pl-12">
3232
<DaoName dao={props.dao} isEditable={isEditable} refresh={refresh} />
33-
<div className="mb-2 text-type-secondary">{props.dao.address}</div>
33+
<div className="text-type-secondary mb-4">
34+
<span className="inline-block">
35+
{"@" + props.dao.name.toLowerCase()}
36+
</span>
37+
<span className="mx-2 hidden sm:inline">&middot;</span>
38+
<a
39+
href={
40+
process.env.NEXT_PUBLIC_EXPLORER_URL +
41+
"/accounts/" +
42+
props.dao.address
43+
}
44+
target="_blank"
45+
rel="noreferrer"
46+
className="inline-block sm:inline link no-underline hover:link-primary text-type-secondary w-80 sm:w-full overflow-hidden break-words"
47+
>
48+
{props.dao.address}
49+
</a>
50+
</div>
3451
<DaoDescription
3552
dao={props.dao}
3653
isEditable={isEditable}
3754
refresh={refresh}
3855
/>
39-
<div className="text-sm text-type-secondary mt-2 flex gap-2">
56+
<div className="text-sm text-type-secondary mt-2 flex flex-col sm:flex-row gap-2">
4057
<DaoLocation
4158
dao={props.dao}
4259
isEditable={isEditable}

0 commit comments

Comments
 (0)