Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Commit

Permalink
dotCMS/core#13292 Contentlet search filter and add contentlet to a page
Browse files Browse the repository at this point in the history
  • Loading branch information
fmontes committed Jan 11, 2018
1 parent 5c69fdc commit a42badc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app/portlets/dot-edit-content/dot-edit-content.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { DotMessageService } from '../../api/services/dot-messages-service';
@Component({
selector: 'dot-edit-content',
templateUrl: './dot-edit-content.component.html',
styleUrls: ['./dot-edit-content.component.scss'],
styleUrls: ['./dot-edit-content.component.scss']
})
export class DotEditContentComponent implements OnInit {
@ViewChild('contentletActionsIframe') contentletActionsIframe: ElementRef;
Expand Down Expand Up @@ -91,8 +91,8 @@ export class DotEditContentComponent implements OnInit {
this.dotEditContentHtmlService.setContainterToAppendContentlet($event.dataset.dotIdentifier);
this.loadDialogEditor(
$event.dataset.dotIdentifier,
'/html/ng-contentlet-selector.html?ng=true',
$event.contentletEvents,
`/html/ng-contentlet-selector.jsp?ng=true&container_id=${$event.dataset.dotIdentifier}`,
$event.contentletEvents
);
}

Expand Down Expand Up @@ -149,8 +149,8 @@ export class DotEditContentComponent implements OnInit {
message: this.dotMessageService.get('editpage.content.contentlet.remove.confirmation_message.message'),
footerLabel: {
acceptLabel: this.dotMessageService.get('editpage.content.contentlet.remove.confirmation_message.accept'),
rejectLabel: this.dotMessageService.get('editpage.content.contentlet.remove.confirmation_message.reject'),
},
rejectLabel: this.dotMessageService.get('editpage.content.contentlet.remove.confirmation_message.reject')
}
});
}
}

0 comments on commit a42badc

Please sign in to comment.