|
@ -40,13 +40,14 @@ |
|
|
class="bg-amber-200 text-amber-900 border-amber-500 border-dashed border text-center rounded-md overflow-hidden px-4 py-3 mb-4" |
|
|
class="bg-amber-200 text-amber-900 border-amber-500 border-dashed border text-center rounded-md overflow-hidden px-4 py-3 mb-4" |
|
|
> |
|
|
> |
|
|
<p class="mb-4"> |
|
|
<p class="mb-4"> |
|
|
<b>Note:</b> Before you can take any action, you need an ID. |
|
|
<b>Note:</b> Before you can share with others or take any action, you |
|
|
|
|
|
need an identifier. |
|
|
</p> |
|
|
</p> |
|
|
<router-link |
|
|
<router-link |
|
|
:to="{ name: 'start' }" |
|
|
:to="{ name: 'start' }" |
|
|
class="inline-block text-md uppercase bg-amber-600 text-white px-4 py-2 rounded-md" |
|
|
class="inline-block text-md uppercase bg-amber-600 text-white px-4 py-2 rounded-md" |
|
|
> |
|
|
> |
|
|
Generate Identity |
|
|
Create An Identifier |
|
|
</router-link> |
|
|
</router-link> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
@ -217,7 +218,7 @@ |
|
|
|
|
|
|
|
|
<!-- Deep Identity Details --> |
|
|
<!-- Deep Identity Details --> |
|
|
<h2 class="text-sm uppercase font-semibold mb-3"> |
|
|
<h2 class="text-sm uppercase font-semibold mb-3"> |
|
|
Deep Identity Details |
|
|
Deep Identifier Details |
|
|
</h2> |
|
|
</h2> |
|
|
<div class="bg-slate-100 rounded-md overflow-hidden px-4 py-3 mb-4"> |
|
|
<div class="bg-slate-100 rounded-md overflow-hidden px-4 py-3 mb-4"> |
|
|
<div class="text-slate-500 text-sm font-bold">Public Key (base 64)</div> |
|
|
<div class="text-slate-500 text-sm font-bold">Public Key (base 64)</div> |
|
@ -329,7 +330,7 @@ |
|
|
:to="{ name: 'identity-switcher' }" |
|
|
:to="{ name: 'identity-switcher' }" |
|
|
class="block w-fit text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md mb-2" |
|
|
class="block w-fit text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md mb-2" |
|
|
> |
|
|
> |
|
|
Switch Identity |
|
|
Switch Identifier |
|
|
</router-link> |
|
|
</router-link> |
|
|
|
|
|
|
|
|
<div class="flex py-4"> |
|
|
<div class="flex py-4"> |
|
@ -716,9 +717,9 @@ export default class AccountViewView extends Vue { |
|
|
if ( |
|
|
if ( |
|
|
err instanceof Error && |
|
|
err instanceof Error && |
|
|
err.message === |
|
|
err.message === |
|
|
"Attempted to load account records with no identity available." |
|
|
"Attempted to load account records with no identifier available." |
|
|
) { |
|
|
) { |
|
|
this.limitsMessage = "No identity."; |
|
|
this.limitsMessage = "No identifier."; |
|
|
this.loadingLimits = false; |
|
|
this.loadingLimits = false; |
|
|
} else { |
|
|
} else { |
|
|
this.$notify( |
|
|
this.$notify( |
|
@ -1020,9 +1021,9 @@ export default class AccountViewView extends Vue { |
|
|
} else if ( |
|
|
} else if ( |
|
|
error instanceof Error && |
|
|
error instanceof Error && |
|
|
error.message === |
|
|
error.message === |
|
|
"Attempted to load Give records with no identity available." |
|
|
"Attempted to load Give records with no identifier available." |
|
|
) { |
|
|
) { |
|
|
this.limitsMessage = "No identity."; |
|
|
this.limitsMessage = "No identifier."; |
|
|
} else { |
|
|
} else { |
|
|
// Handle other unknown errors |
|
|
// Handle other unknown errors |
|
|
} |
|
|
} |
|
|