Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFDS-register-front
Manage
Activity
Members
Labels
Plan
Issues
3
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dad
FFDS-register-front
Commits
70ac9382
Commit
70ac9382
authored
4 years ago
by
Administrator
Browse files
Options
Downloads
Patches
Plain Diff
nombre datastets
parent
1daa167e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/datasets/datasets.component.html
+1
-1
1 addition, 1 deletion
src/app/datasets/datasets.component.html
src/app/datasets/datasets.component.ts
+2
-2
2 additions, 2 deletions
src/app/datasets/datasets.component.ts
with
3 additions
and
3 deletions
src/app/datasets/datasets.component.html
+
1
−
1
View file @
70ac9382
...
...
@@ -5,6 +5,6 @@
<div>
<button
type=
"submit"
(click)=
"listdatasets()"
class=
"btn btn-primary"
>
List datasets
</button>
</div>
<p>
{{dataresult}}
</p>
<p>
<strong>
{{dataresult}}
</
strong></
p>
</form>
This diff is collapsed.
Click to expand it.
src/app/datasets/datasets.component.ts
+
2
−
2
View file @
70ac9382
...
...
@@ -39,8 +39,8 @@ export class DatasetsComponent implements OnInit {
.
then
(
response
=>
{
response
.
json
()
.
then
(
data
=>
{
this
.
dataresult
=
JSON
.
stringify
(
data
);
return
this
.
dataresult
[
"
status
"
]
;
this
.
dataresult
=
'
Total des datasets trouvés:
'
+
JSON
.
stringify
(
data
[
'
data
'
][
'
total_count
'
]);
;
// console.log(this.dataresult);
});
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment