Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nghyd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
A compter du 1er avril, attention à vos pipelines :
Nouvelles limitations de Docker Hub
Show more breadcrumbs
Cassiopée
nghyd
Commits
c9e3fbe2
Commit
c9e3fbe2
authored
2 years ago
by
François Grand
Browse files
Options
Downloads
Patches
Plain Diff
feat: make result messages log foldable
refs
#519
parent
13f00854
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!151
Resolve "Journal de calcul repliable"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/app.module.ts
+2
-1
2 additions, 1 deletion
src/app/app.module.ts
src/app/components/log/log.component.html
+9
-8
9 additions, 8 deletions
src/app/components/log/log.component.html
with
11 additions
and
9 deletions
src/app/app.module.ts
+
2
−
1
View file @
c9e3fbe2
...
...
@@ -23,7 +23,7 @@ import { MatTableModule } from "@angular/material/table";
import
{
MatTabsModule
}
from
"
@angular/material/tabs
"
;
import
{
MatToolbarModule
}
from
"
@angular/material/toolbar
"
;
import
{
MatTooltipModule
}
from
"
@angular/material/tooltip
"
;
import
{
MatExpansionModule
}
from
'
@angular/material/expansion
'
;
import
{
MaterialFileInputModule
}
from
"
ngx-material-file-input
"
;
import
{
DragDropModule
}
from
"
@angular/cdk/drag-drop
"
;
...
...
@@ -170,6 +170,7 @@ const appRoutes: Routes = [
MatTabsModule
,
MatToolbarModule
,
MatTooltipModule
,
MatExpansionModule
,
MatomoModule
,
RouterModule
.
forRoot
(
appRoutes
,
...
...
This diff is collapsed.
Click to expand it.
src/app/components/log/log.component.html
+
9
−
8
View file @
c9e3fbe2
<div
*ngIf=
"hasEntries"
>
<div
class=
"hyd_log"
>
<!-- titre -->
<div
class=
"titre"
>
{{ uitextTitreJournal }}
</div>
<!-- entrées du journal -->
<log-entry
*ngFor=
"let m of _log?.messages"
[_message]=
"m"
></log-entry>
</div>
</div>
<mat-expansion-panel
*ngIf=
"hasEntries"
expanded
>
<mat-expansion-panel-header>
<mat-panel-title>
{{ uitextTitreJournal }}
</mat-panel-title>
</mat-expansion-panel-header>
<!-- entrées du journal -->
<log-entry
*ngFor=
"let m of _log?.messages"
[_message]=
"m"
></log-entry>
</mat-expansion-panel>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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