Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cesium2s
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
clients
Cesium-grp
cesium2s
Merge requests
!19
add idty status and created block
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
add idty status and created block
feature/fix_fetch_is_member_hugo
into
develop
Overview
1
Commits
4
Pipelines
3
Changes
16
Merged
Hugo Trentesaux
requested to merge
feature/fix_fetch_is_member_hugo
into
develop
11 months ago
Overview
1
Commits
4
Pipelines
3
Changes
16
Expand
J'ai ajouté le numéro de bloc de création de l'identité et le statut de l'identité dans le tag.
0
0
Merge request reports
Compare
develop
version 3
8b4196db
11 months ago
version 2
399c7592
11 months ago
version 1
d32d7165
11 months ago
develop (base)
and
latest version
latest version
8b4196db
4 commits,
11 months ago
version 3
8b4196db
6 commits,
11 months ago
version 2
399c7592
2 commits,
11 months ago
version 1
d32d7165
1 commit,
11 months ago
16 files
+
121
−
51
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
16
Search (e.g. *.vue) (Ctrl+P)
src/app/account/wallet/wallet.page.html
+
8
−
3
Options
@@ -58,7 +58,7 @@
<ion-label
class=
"ion-text-end"
>
<p
translate
>
ACCOUNT.BALANCE
</p>
<h2>
<b
*rxIf=
"account$; let account"
>
{{
account | balance | amountFormat
}}
</b>
<b
*rxIf=
"account$; let account"
[innerHtml]=
"
account | balance | amountFormat
"
>
</b>
</h2>
</ion-label>
</div>
@@ -123,9 +123,14 @@
<ion-icon
aria-hidden=
"true"
slot=
"start"
name=
"calendar-clear-outline"
></ion-icon>
<ion-label>
<h3
translate
>
COMMON.UID
</h3>
<p>
{{ 'WOT.REGISTERED_SINCE' | translate }}
</p>
<p>
{{ 'WOT.REGISTERED_SINCE' | translate }} {{ account.meta.createdOn | blockTime | dateFormat }} -
{{ 'WOT.REGISTERED_SINCE_BLOCK' | translate }} {{ account.meta.createdOn | blockNumber }}
</p>
</ion-label>
<ion-badge
color=
"warning"
slot=
"end"
>
{{ account.meta?.uid }}
</ion-badge>
<ion-badge
[color]=
"account.meta.isMember ? 'warning' : 'medium'"
slot=
"end"
>
{{ account.meta.uid }} ({{ account.meta.status }})
</ion-badge>
</ion-item>
<!-- Received cert count -->
Loading