mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-09-10 14:11:42 +00:00
ACS-8201 Fixed issues after rebase
This commit is contained in:
@@ -45,7 +45,10 @@ export class SearchAiService {
|
||||
|
||||
toggleSearchAiInput$ = this.toggleSearchAiInput.asObservable();
|
||||
|
||||
constructor(private apiService: AlfrescoApiService, private translateService: TranslateService) {}
|
||||
constructor(
|
||||
private apiService: AlfrescoApiService,
|
||||
private translateService: TranslateService
|
||||
) {}
|
||||
|
||||
/**
|
||||
* Update the state of the search AI input.
|
||||
@@ -96,11 +99,11 @@ export class SearchAiService {
|
||||
questionId: 'some id',
|
||||
references: [
|
||||
{
|
||||
referenceId: '6ee094b5-f51b-411e-88f8-31b41784ff18',
|
||||
referenceId: '45a84919-d654-4669-a849-19d6548669e9',
|
||||
referenceText: 'some type'
|
||||
},
|
||||
{
|
||||
referenceId: '853518e9-071a-41bb-a30c-7e564d4f3382',
|
||||
referenceId: '45a84919-d654-4669-a849-19d6548669e9',
|
||||
referenceText: 'some type'
|
||||
}
|
||||
]
|
||||
|
@@ -34,9 +34,10 @@
|
||||
}
|
||||
|
||||
&-actions {
|
||||
margin-top: 18px;
|
||||
margin-bottom: 4px;
|
||||
margin-top: 11px;
|
||||
margin-bottom: 1px;
|
||||
padding: 0;
|
||||
align-items: flex-end;
|
||||
|
||||
&-cancel-button {
|
||||
background-color: var(--adf-secondary-button-background);
|
||||
|
@@ -38,8 +38,6 @@ import { AppConfigValues } from '../../app-config';
|
||||
@Component({
|
||||
standalone: true,
|
||||
selector: 'adf-unsaved-changes-dialog',
|
||||
standalone: true,
|
||||
imports: [CommonModule, MatDialogModule, TranslateModule, MatButtonModule, MatIconModule],
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
templateUrl: './unsaved-changes-dialog.component.html',
|
||||
styleUrls: ['./unsaved-changes-dialog.component.scss'],
|
||||
@@ -49,7 +47,10 @@ import { AppConfigValues } from '../../app-config';
|
||||
export class UnsavedChangesDialogComponent implements OnInit {
|
||||
dialogData: UnsavedChangesDialogData;
|
||||
|
||||
constructor(@Inject(MAT_DIALOG_DATA) public data: UnsavedChangesDialogData, private storageService: StorageService) {}
|
||||
constructor(
|
||||
@Inject(MAT_DIALOG_DATA) public data: UnsavedChangesDialogData,
|
||||
private storageService: StorageService
|
||||
) {}
|
||||
|
||||
ngOnInit() {
|
||||
this.dialogData = {
|
||||
|
Reference in New Issue
Block a user