refactor(client): align filename to component name

This commit is contained in:
syuilo
2022-08-31 00:24:33 +09:00
parent 47b2e56967
commit 786b150ea7
243 changed files with 390 additions and 386 deletions

View File

@@ -15,7 +15,7 @@ import * as misskey from 'misskey-js';
import { getStaticImageUrl } from '@/scripts/get-static-image-url';
import { extractAvgColorFromBlurhash } from '@/scripts/extract-avg-color-from-blurhash';
import { acct, userPage } from '@/filters/user';
import MkUserOnlineIndicator from '@/components/user-online-indicator.vue';
import MkUserOnlineIndicator from '@/components/MkUserOnlineIndicator.vue';
import { defaultStore } from '@/store';
const props = withDefaults(defineProps<{

View File

@@ -44,7 +44,7 @@ export default defineComponent({
const el = ref();
useTooltip(el, (showing) => {
os.popup(defineAsyncComponent(() => import('@/components/url-preview-popup.vue')), {
os.popup(defineAsyncComponent(() => import('@/components/MkUrlPreviewPopup.vue')), {
showing,
url: props.url,
source: el.value,