Compare commits
No commits in common. "9e007decaec65a6de38d319f528d1cf8624762dd" and "3ed79de6256eb9f1b583cfaba8df5c33a28189a4" have entirely different histories.
9e007decae
...
3ed79de625
3 changed files with 17 additions and 22 deletions
|
|
@ -13,6 +13,7 @@ import NavPanel from './components/nav_panel/nav_panel.vue'
|
|||
import PostStatusModal from './components/post_status_modal/post_status_modal.vue'
|
||||
import UserPanel from './components/user_panel/user_panel.vue'
|
||||
import UserReportingModal from './components/user_reporting_modal/user_reporting_modal.vue'
|
||||
import WhoToFollowPanel from './components/who_to_follow_panel/who_to_follow_panel.vue'
|
||||
import { getOrCreateServiceWorker } from './services/sw/sw'
|
||||
import { windowHeight, windowWidth } from './services/window_utils/window_utils'
|
||||
|
||||
|
|
@ -40,9 +41,7 @@ export default {
|
|||
),
|
||||
InstanceSpecificPanel,
|
||||
FeaturesPanel,
|
||||
WhoToFollowPanel: defineAsyncComponent(
|
||||
() => import('./components/who_to_follow_panel/who_to_follow_panel.vue'),
|
||||
),
|
||||
WhoToFollowPanel,
|
||||
ShoutPanel: defineAsyncComponent(
|
||||
() => import('src/components/shout_panel/shout_panel.vue'),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
import MuteConfirm from 'src/components/confirm_modal/mute_confirm.vue'
|
||||
import Popover from 'src/components/popover/popover.vue'
|
||||
import ActionButton from './action_button.vue'
|
||||
import { defineAsyncComponent } from 'vue'
|
||||
|
|
@ -15,9 +16,7 @@ export default {
|
|||
components: {
|
||||
ActionButton,
|
||||
Popover,
|
||||
MuteConfirm: defineAsyncComponent(
|
||||
() => import( 'src/components/confirm_modal/mute_confirm.vue'),
|
||||
),
|
||||
MuteConfirm,
|
||||
UserTimedFilterModal: defineAsyncComponent(
|
||||
() => import( 'src/components/user_timed_filter_modal/user_timed_filter_modal.vue'),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -7,15 +7,19 @@ import {
|
|||
import { mapState } from 'pinia'
|
||||
import { defineAsyncComponent } from 'vue'
|
||||
|
||||
import AccountActions from 'src/components/account_actions/account_actions.vue'
|
||||
import Checkbox from 'src/components/checkbox/checkbox.vue'
|
||||
import EmojiInput from 'src/components/emoji_input/emoji_input.vue'
|
||||
import suggestor from 'src/components/emoji_input/suggestor.js'
|
||||
|
||||
import ProgressButton from 'src/components/progress_button/progress_button.vue'
|
||||
import Select from 'src/components/select/select.vue'
|
||||
import UserAvatar from 'src/components/user_avatar/user_avatar.vue'
|
||||
import UserLink from 'src/components/user_link/user_link.vue'
|
||||
import FollowButton from '../follow_button/follow_button.vue'
|
||||
import ProgressButton from '../progress_button/progress_button.vue'
|
||||
import RemoteFollow from '../remote_follow/remote_follow.vue'
|
||||
import Select from '../select/select.vue'
|
||||
import UserAvatar from '../user_avatar/user_avatar.vue'
|
||||
import UserLink from '../user_link/user_link.vue'
|
||||
import ColorInput from 'src/components/color_input/color_input.vue'
|
||||
import UserNote from '../user_note/user_note.vue'
|
||||
|
||||
import { useEmojiStore } from 'src/stores/emoji.js'
|
||||
import { useInstanceStore } from 'src/stores/instance.js'
|
||||
|
|
@ -122,24 +126,17 @@ export default {
|
|||
),
|
||||
UserAvatar,
|
||||
Checkbox,
|
||||
RemoteFollow: defineAsyncComponent(
|
||||
() => import( 'src/components/remote_follow/remote_follow.vue'),
|
||||
),
|
||||
RemoteFollow,
|
||||
ModerationTools: defineAsyncComponent(
|
||||
() => import( 'src/components/moderation_tools/moderation_tools.vue'),
|
||||
),
|
||||
AccountActions: defineAsyncComponent(
|
||||
() => import( 'src/components/account_actions/account_actions.vue'),
|
||||
),
|
||||
AccountActions,
|
||||
ProgressButton,
|
||||
FollowButton: defineAsyncComponent(
|
||||
() => import( 'src/components/follow_button/follow_button.vue'),
|
||||
),
|
||||
FollowButton,
|
||||
Select,
|
||||
|
||||
UserLink,
|
||||
UserNote: defineAsyncComponent(
|
||||
() => import( 'src/components/user_note/user_note.vue'),
|
||||
),
|
||||
UserNote,
|
||||
UserTimedFilterModal: defineAsyncComponent(
|
||||
() => import( 'src/components/user_timed_filter_modal/user_timed_filter_modal.vue'),
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue