0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Move duplicate post functionality out of labs (#16812)

no issue

Removed the labs check for the duplicate post functionality making it
available for everybody
This commit is contained in:
Michael Barrett 2023-05-17 11:44:07 +01:00 committed by GitHub
parent d8b1a715b4
commit 93599315ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,7 +48,6 @@ const messages = {
export default class PostsContextMenu extends Component {
@service ajax;
@service feature;
@service ghostPaths;
@service session;
@service infinity;
@ -453,10 +452,6 @@ export default class PostsContextMenu extends Component {
}
get canCopySelection() {
if (this.feature.makingItRain === false) {
return false;
}
return this.selectionList.availableModels.length === 1;
}
}