File tree Expand file tree Collapse file tree 3 files changed +7
-385
lines changed
core/wallet-ui-components/src/components
wallet-gateway/remote/src Expand file tree Collapse file tree 3 files changed +7
-385
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ export class WgSessions extends BaseElement {
5454 < tr >
5555 < th > Network ID</ th >
5656 < th > Status</ th >
57+ < th > Reason</ th >
5758 < th > Access Token</ th >
5859 </ tr >
5960 </ thead >
@@ -62,7 +63,12 @@ export class WgSessions extends BaseElement {
6263 ( session ) => html `
6364 < tr >
6465 < td > ${ session . network . id } </ td >
65- < td > ${ session . status } </ td >
66+ < td >
67+ ${ session . status === 'connected'
68+ ? '🟢'
69+ : '🔴' }
70+ </ td >
71+ < td > ${ session . reason } </ td >
6672 < td >
6773 < button
6874 type ="button "
Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ export default {
4141 name : 'Canton Local (Self Signed)' ,
4242 description :
4343 'A network that connects to a Canton participant using self-signed tokens' ,
44- synchronizerId : '<REPLACE_SYNCHRONIZER_ID>' ,
4544 identityProviderId : 'idp-example-self-signed' ,
4645 auth : {
4746 method : 'self_signed' ,
@@ -68,7 +67,6 @@ export default {
6867 name : 'Canton Local (OAuth IDP)' ,
6968 description :
7069 'A network that connects to a Canton participant using an OAuth IDP' ,
71- synchronizerId : '<REPLACE_SYNCHRONIZER_ID>' ,
7270 identityProviderId : 'idp-example-oauth' ,
7371 auth : {
7472 method : 'authorization_code' ,
You can’t perform that action at this time.
0 commit comments