Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
verona-modules-aspect
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Insights
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
IQB
verona-modules-aspect
Commits
bca7378f
Commit
bca7378f
authored
9 months ago
by
rhenck
Browse files
Options
Downloads
Patches
Plain Diff
[editor] Fix ignore-counter icon
parent
4c688856
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
projects/editor/src/app/app.component.ts
+1
-5
1 addition, 5 deletions
projects/editor/src/app/app.component.ts
projects/editor/src/app/components/unit-view/canvas/section-menu.component.ts
+3
-1
3 additions, 1 deletion
...app/components/unit-view/canvas/section-menu.component.ts
with
4 additions
and
6 deletions
projects/editor/src/app/app.component.ts
+
1
−
5
View file @
bca7378f
...
@@ -27,13 +27,9 @@ export class AppComponent implements OnInit {
...
@@ -27,13 +27,9 @@ export class AppComponent implements OnInit {
constructor
(
private
unitService
:
UnitService
,
constructor
(
private
unitService
:
UnitService
,
private
translateService
:
TranslateService
,
private
translateService
:
TranslateService
,
private
veronaApiService
:
VeronaAPIService
,
private
veronaApiService
:
VeronaAPIService
)
{
private
matIconRegistry
:
MatIconRegistry
,
private
domSanitizer
:
DomSanitizer
)
{
translateService
.
addLangs
([
'
de
'
]);
translateService
.
addLangs
([
'
de
'
]);
translateService
.
setDefaultLang
(
'
de
'
);
translateService
.
setDefaultLang
(
'
de
'
);
this
.
matIconRegistry
.
addSvgIcon
(
'
playlist_remove
'
,
this
.
domSanitizer
.
bypassSecurityTrustResourceUrl
(
'
assets/playlist_remove.svg
'
));
}
}
ngOnInit
():
void
{
ngOnInit
():
void
{
...
...
This diff is collapsed.
Click to expand it.
projects/editor/src/app/components/unit-view/canvas/section-menu.component.ts
+
3
−
1
View file @
bca7378f
...
@@ -48,7 +48,9 @@ import { SectionService } from 'editor/src/app/services/unit-services/section.se
...
@@ -48,7 +48,9 @@ import { SectionService } from 'editor/src/app/services/unit-services/section.se
<button mat-mini-fab [color]="section.ignoreNumbering ? 'primary' : 'accent'"
<button mat-mini-fab [color]="section.ignoreNumbering ? 'primary' : 'accent'"
(click)="ignoreNumbering()"
(click)="ignoreNumbering()"
[matTooltip]="'Von der Nummerierung ausnehmen'" [matTooltipPosition]="'left'">
[matTooltip]="'Von der Nummerierung ausnehmen'" [matTooltipPosition]="'left'">
<mat-icon>playlist_remove</mat-icon>
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="white">
<path d="m576-80-56-56 104-104-104-104 56-56 104 104 104-104 56 56-104 104 104 104-56 56-104-104L576-80ZM120-320v-80h280v80H120Zm0-160v-80h440v80H120Zm0-160v-80h440v80H120Z"/>
</svg>
</button>
</button>
...
...
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