diff --git a/framework/core/js/src/forum/components/PostMeta.js b/framework/core/js/src/forum/components/PostMeta.js
index 78573db5bf..4757541f18 100644
--- a/framework/core/js/src/forum/components/PostMeta.js
+++ b/framework/core/js/src/forum/components/PostMeta.js
@@ -2,6 +2,7 @@ import app from '../../forum/app';
import Component from '../../common/Component';
import humanTime from '../../common/helpers/humanTime';
import fullTime from '../../common/helpers/fullTime';
+import ItemList from '../../common/utils/ItemList';
/**
* The `PostMeta` component displays the time of a post, and when clicked, shows
@@ -14,38 +15,7 @@ import fullTime from '../../common/helpers/fullTime';
*/
export default class PostMeta extends Component {
view() {
- const post = this.attrs.post;
- const time = post.createdAt();
- const permalink = this.getPermalink(post);
- const touch = 'ontouchstart' in document.documentElement;
-
- // When the dropdown menu is shown, select the contents of the permalink
- // input so that the user can quickly copy the URL.
- const selectPermalink = function (e) {
- setTimeout(() => $(this).parent().find('.PostMeta-permalink').select());
-
- e.redraw = false;
- };
-
- return (
-