forked from cybrespace/pinafore
fix Avatar on instanceName page
This commit is contained in:
parent
fee954bf27
commit
d0270991d7
|
@ -182,7 +182,7 @@
|
|||
<script>
|
||||
import IconButton from './IconButton.html'
|
||||
import ExternalLink from './ExternalLink.html'
|
||||
import Avatar from './Status/Avatar.html'
|
||||
import Avatar from './Avatar.html'
|
||||
import { store } from '../_store/store'
|
||||
|
||||
export default {
|
||||
|
|
|
@ -35,9 +35,9 @@
|
|||
}
|
||||
</style>
|
||||
<script>
|
||||
import { imgLoadError } from '../../_utils/events'
|
||||
import { store } from '../../_store/store'
|
||||
import NonAutoplayImg from '../NonAutoplayImg.html'
|
||||
import { imgLoadError } from '../_utils/events'
|
||||
import { store } from '../_store/store'
|
||||
import NonAutoplayImg from './NonAutoplayImg.html'
|
||||
|
||||
export default {
|
||||
events: {
|
|
@ -43,7 +43,7 @@
|
|||
}
|
||||
</style>
|
||||
<script>
|
||||
import Avatar from '../status/Avatar.html'
|
||||
import Avatar from '../Avatar.html'
|
||||
import SearchResult from './SearchResult.html'
|
||||
export default {
|
||||
components: {
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
}
|
||||
</style>
|
||||
<script>
|
||||
import Avatar from './Avatar.html'
|
||||
import Avatar from '../Avatar.html'
|
||||
export default {
|
||||
components: {
|
||||
Avatar
|
||||
|
|
|
@ -9,8 +9,7 @@
|
|||
{{#if verifyCredentials}}
|
||||
<h2>Logged in as:</h2>
|
||||
<div class="acct-current-user">
|
||||
<img alt="Profile picture for {{'@' + verifyCredentials.acct}}"
|
||||
class="acct-avatar" src="{{verifyCredentials.avatar}}" />
|
||||
<Avatar account="{{verifyCredentials}}" className="acct-avatar" size="big"/>
|
||||
<ExternalLink class="acct-handle"
|
||||
href="{{verifyCredentials.url}}">
|
||||
{{'@' + verifyCredentials.acct}}
|
||||
|
@ -53,12 +52,11 @@
|
|||
grid-template-areas:
|
||||
"avatar handle"
|
||||
"avatar display-name";
|
||||
grid-gap: 20px;
|
||||
grid-template-columns: min-content 1fr;
|
||||
grid-column-gap: 20px;
|
||||
grid-row-gap: 10px;
|
||||
}
|
||||
.acct-avatar {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
border-radius: 4px;
|
||||
:global(.acct-avatar) {
|
||||
grid-area: avatar;
|
||||
}
|
||||
:global(.acct-handle) {
|
||||
|
@ -100,6 +98,7 @@
|
|||
import Layout from '../../_components/Layout.html'
|
||||
import SettingsLayout from '../_components/SettingsLayout.html'
|
||||
import ExternalLink from '../../_components/ExternalLink.html'
|
||||
import Avatar from '../../_components/Avatar.html'
|
||||
import { showConfirmationDialog } from '../../_components/dialog/showConfirmationDialog'
|
||||
import {
|
||||
changeTheme,
|
||||
|
@ -113,7 +112,8 @@
|
|||
components: {
|
||||
Layout,
|
||||
SettingsLayout,
|
||||
ExternalLink
|
||||
ExternalLink,
|
||||
Avatar
|
||||
},
|
||||
store: () => store,
|
||||
data: () => ({
|
||||
|
|
Loading…
Reference in New Issue