Remove obsolete import

This commit is contained in:
Franz Liedke 2017-07-27 00:25:24 +02:00
parent ae86c1113d
commit e85f4122ee
2 changed files with 2 additions and 5 deletions

View File

@ -334,15 +334,13 @@ System.register('flarum/tags/addTagList', ['flarum/extend', 'flarum/components/I
});;
'use strict';
System.register('flarum/tags/components/DiscussionTaggedPost', ['flarum/components/EventPost', 'flarum/helpers/punctuateSeries', 'flarum/tags/helpers/tagsLabel'], function (_export, _context) {
System.register('flarum/tags/components/DiscussionTaggedPost', ['flarum/components/EventPost', 'flarum/tags/helpers/tagsLabel'], function (_export, _context) {
"use strict";
var EventPost, punctuateSeries, tagsLabel, DiscussionTaggedPost;
var EventPost, tagsLabel, DiscussionTaggedPost;
return {
setters: [function (_flarumComponentsEventPost) {
EventPost = _flarumComponentsEventPost.default;
}, function (_flarumHelpersPunctuateSeries) {
punctuateSeries = _flarumHelpersPunctuateSeries.default;
}, function (_flarumTagsHelpersTagsLabel) {
tagsLabel = _flarumTagsHelpersTagsLabel.default;
}],

View File

@ -1,5 +1,4 @@
import EventPost from 'flarum/components/EventPost';
import punctuateSeries from 'flarum/helpers/punctuateSeries';
import tagsLabel from 'flarum/tags/helpers/tagsLabel';
export default class DiscussionTaggedPost extends EventPost {