Skip to content
Snippets Groups Projects
Commit c81a0e81 authored by rhenck's avatar rhenck
Browse files

[editor] Fix imports

parent 2d05cf07
No related branches found
No related tags found
No related merge requests found
......@@ -129,6 +129,7 @@ import { PageMenu } from 'editor/src/app/components/unit-view/page-menu.componen
import { MAT_TOOLTIP_DEFAULT_OPTIONS, MatTooltipDefaultOptions } from '@angular/material/tooltip';
import { ReferenceListComponent } from 'editor/src/app/components/reference-list.component';
import { ElementListComponent } from 'editor/src/app/components/element-list.component';
import { MeasurePipe } from 'common/pipes/measure.pipe';
/** Custom options the configure the tooltip's default show/hide delays. */
export const myCustomTooltipDefaults: MatTooltipDefaultOptions = {
......@@ -236,7 +237,9 @@ export const myCustomTooltipDefaults: MatTooltipDefaultOptions = {
EleSpecificPropsComponent,
PageMenu,
ReferenceListComponent,
ElementListComponent
ElementListComponent,
SizeInputPanelComponent,
MeasurePipe
],
providers: [
{ provide: APIService, useExisting: VeronaAPIService },
......
......@@ -11,7 +11,7 @@ import { ElementService } from 'editor/src/app/services/unit-services/element.se
<legend>Dimensionen</legend>
<ng-container *ngIf="unitService.unit.pages[selectionService.selectedPageIndex]
.sections[selectionService.selectedSectionIndex].dynamicPositioning ||
selectionService.isClozeChildSelected;
selectionService.isCompoundChildSelected;
else elseBlock">
<mat-checkbox #fixedWidth [checked]="$any(dimensions.isWidthFixed)"
(change)="updateDimensionProperty('isWidthFixed', $event.checked)">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment