diff --git a/src/app/features/project-editor/sections/preview-section.component.html b/src/app/features/project-editor/sections/preview-section.component.html index 1862e9b..2ffaa02 100644 --- a/src/app/features/project-editor/sections/preview-section.component.html +++ b/src/app/features/project-editor/sections/preview-section.component.html @@ -1,5 +1,4 @@ -
-

{{ 'builder.preview' | translate }}

+
{{ 'builder.livePreview' | translate }} {{ 'builder.exportBootstrap' | translate }} @@ -16,4 +15,4 @@ {{ 'builder.importSource' | translate }} -
+ diff --git a/src/app/features/project-editor/sections/preview-section.component.ts b/src/app/features/project-editor/sections/preview-section.component.ts index 410a669..19b3f04 100644 --- a/src/app/features/project-editor/sections/preview-section.component.ts +++ b/src/app/features/project-editor/sections/preview-section.component.ts @@ -3,11 +3,12 @@ import { FormsModule } from '@angular/forms'; import { ProjectEditorFacade } from '../facade/project-editor.facade'; import { TranslatePipe } from '../../../i18n/translate.pipe'; import { ButtonComponent } from '../../../shared/ui/button/button.component'; +import { SectionCardComponent } from '../../../shared/ui/section-card/section-card.component'; @Component({ selector: 'app-project-editor-preview-section', standalone: true, - imports: [FormsModule, TranslatePipe, ButtonComponent], + imports: [FormsModule, TranslatePipe, ButtonComponent, SectionCardComponent], templateUrl: './preview-section.component.html', styleUrls: ['./section.shared.scss'], changeDetection: ChangeDetectionStrategy.OnPush