Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
19c1252b
Commit
19c1252b
authored
Apr 10, 2018
by
Kushal Pandya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update item titles, add help text
parent
de55534d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
+11
-6
ee/app/assets/javascripts/geo_nodes/components/node_detail_sections/node_details_section_verification.vue
...ode_detail_sections/node_details_section_verification.vue
+11
-6
No files found.
ee/app/assets/javascripts/geo_nodes/components/node_detail_sections/node_details_section_verification.vue
View file @
19c1252b
...
...
@@ -49,27 +49,29 @@
if
(
this
.
nodeDetails
.
repositoryVerificationEnabled
)
{
primaryNodeDetailItems
.
push
(
{
itemTitle
:
s__
(
'
GeoNodes|Repository
verification progress:
'
),
itemTitle
:
s__
(
'
GeoNodes|Repository
checksum progress
'
),
itemValue
:
this
.
nodeDetails
.
verifiedRepositories
,
itemValueType
:
VALUE_TYPE
.
GRAPH
,
successLabel
:
s__
(
'
GeoNodes|Checksummed
'
),
neutraLabel
:
s__
(
'
GeoNodes|Not checksummed
'
),
failureLabel
:
s__
(
'
GeoNodes|Failed
'
),
helpText
:
s__
(
'
GeoNodes|Repositories checksummed for verification with their counterparts on Secondary nodes
'
),
},
{
itemTitle
:
s__
(
'
GeoNodes|Wiki
s checksums calculated verifies:
'
),
itemTitle
:
s__
(
'
GeoNodes|Wiki
checksum progress
'
),
itemValue
:
this
.
nodeDetails
.
verifiedWikis
,
itemValueType
:
VALUE_TYPE
.
GRAPH
,
successLabel
:
s__
(
'
GeoNodes|Checksummed
'
),
neutraLabel
:
s__
(
'
GeoNodes|Not checksummed
'
),
failureLabel
:
s__
(
'
GeoNodes|Failed
'
),
helpText
:
s__
(
'
GeoNodes|Wikis checksummed for verification with their counterparts on Secondary nodes
'
),
},
);
}
primaryNodeDetailItems
.
push
(
{
itemTitle
:
s__
(
'
GeoNodes|Replication slots
:
'
),
itemTitle
:
s__
(
'
GeoNodes|Replication slots
'
),
itemValue
:
this
.
nodeDetails
.
replicationSlots
,
itemValueType
:
VALUE_TYPE
.
GRAPH
,
successLabel
:
s__
(
'
GeoNodes|Used slots
'
),
...
...
@@ -80,7 +82,7 @@
if
(
this
.
nodeDetails
.
replicationSlots
.
totalCount
)
{
primaryNodeDetailItems
.
push
(
{
itemTitle
:
s__
(
'
GeoNodes|Replication slot WAL
:
'
),
itemTitle
:
s__
(
'
GeoNodes|Replication slot WAL
'
),
itemValue
:
numberToHumanSize
(
this
.
nodeDetails
.
replicationSlotWAL
),
itemValueType
:
VALUE_TYPE
.
PLAIN
,
cssClass
:
'
node-detail-value-bold
'
,
...
...
@@ -93,20 +95,22 @@
getSecondaryNodeDetailItems
()
{
const
secondaryNodeDetailItems
=
[
{
itemTitle
:
s__
(
'
GeoNodes|Repository
checksums verified:
'
),
itemTitle
:
s__
(
'
GeoNodes|Repository
verification progress
'
),
itemValue
:
this
.
nodeDetails
.
verifiedRepositories
,
itemValueType
:
VALUE_TYPE
.
GRAPH
,
successLabel
:
s__
(
'
GeoNodes|Verified
'
),
neutraLabel
:
s__
(
'
GeoNodes|Unverified
'
),
failureLabel
:
s__
(
'
GeoNodes|Failed
'
),
helpText
:
s__
(
'
GeoNodes|Repositories verified with their counterparts on the Primary node
'
),
},
{
itemTitle
:
s__
(
'
GeoNodes|Wiki
checksums verified:
'
),
itemTitle
:
s__
(
'
GeoNodes|Wiki
verification progress
'
),
itemValue
:
this
.
nodeDetails
.
verifiedWikis
,
itemValueType
:
VALUE_TYPE
.
GRAPH
,
successLabel
:
s__
(
'
GeoNodes|Verified
'
),
neutraLabel
:
s__
(
'
GeoNodes|Unverified
'
),
failureLabel
:
s__
(
'
GeoNodes|Failed
'
),
helpText
:
s__
(
'
GeoNodes|Wikis verified with their counterparts on the Primary node
'
),
},
];
...
...
@@ -145,6 +149,7 @@
:neutral-label=
"nodeDetailItem.neutraLabel"
:failure-label=
"nodeDetailItem.failureLabel"
:custom-type=
"nodeDetailItem.customType"
:help-text=
"nodeDetailItem.helpText"
/>
</div>
</
template
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment