Merge branch 'more-fixes' into shigusegubu-themes3
This commit is contained in:
commit
f448b2982d
6 changed files with 14 additions and 15 deletions
|
|
@ -17,7 +17,6 @@ export const paramsString = (params = {}) => {
|
||||||
}
|
}
|
||||||
})()
|
})()
|
||||||
|
|
||||||
|
|
||||||
const arrays = []
|
const arrays = []
|
||||||
const nonArrays = []
|
const nonArrays = []
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
import { defineAsyncComponent } from 'vue'
|
import { defineAsyncComponent } from 'vue'
|
||||||
|
|
||||||
|
import AuthForm from 'src/components/auth_form/auth_form.js'
|
||||||
import BookmarkTimeline from 'src/components/bookmark_timeline/bookmark_timeline.vue'
|
import BookmarkTimeline from 'src/components/bookmark_timeline/bookmark_timeline.vue'
|
||||||
import BubbleTimeline from 'src/components/bubble_timeline/bubble_timeline.vue'
|
import BubbleTimeline from 'src/components/bubble_timeline/bubble_timeline.vue'
|
||||||
import ConversationPage from 'src/components/conversation-page/conversation-page.vue'
|
import ConversationPage from 'src/components/conversation-page/conversation-page.vue'
|
||||||
|
|
@ -147,9 +148,7 @@ export default (store) => {
|
||||||
{
|
{
|
||||||
name: 'login',
|
name: 'login',
|
||||||
path: '/login',
|
path: '/login',
|
||||||
component: defineAsyncComponent(
|
component: AuthForm,
|
||||||
() => import('src/components/auth_form/auth_form.js'),
|
|
||||||
),
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'shout-panel',
|
name: 'shout-panel',
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,13 @@
|
||||||
import { mapActions, mapState } from 'pinia'
|
import { mapActions, mapState } from 'pinia'
|
||||||
|
import { defineAsyncComponent } from 'vue'
|
||||||
import ErrorModal from 'src/components/error_modal/error_modal.vue'
|
|
||||||
|
|
||||||
import { useInterfaceStore } from 'src/stores/interface.js'
|
import { useInterfaceStore } from 'src/stores/interface.js'
|
||||||
|
|
||||||
const GlobalError = {
|
const GlobalError = {
|
||||||
components: {
|
components: {
|
||||||
ErrorModal,
|
ErrorModal: defineAsyncComponent(
|
||||||
|
() => import('src/components/error_modal/error_modal.vue'),
|
||||||
|
),
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
title() {
|
title() {
|
||||||
|
|
|
||||||
|
|
@ -10,11 +10,6 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.Status {
|
|
||||||
/* stylelint-disable-next-line declaration-no-important */
|
|
||||||
background-color: transparent !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
--emoji-size: 1em;
|
--emoji-size: 1em;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
export default {
|
export default {
|
||||||
name: 'Notification',
|
name: 'Notification',
|
||||||
selector: '.Notification',
|
selector: '.NotificationParent',
|
||||||
validInnerComponents: [
|
validInnerComponents: [
|
||||||
'Text',
|
'Text',
|
||||||
'Link',
|
'Link',
|
||||||
|
|
@ -9,5 +9,11 @@ export default {
|
||||||
'Avatar',
|
'Avatar',
|
||||||
'PollGraph',
|
'PollGraph',
|
||||||
],
|
],
|
||||||
defaultRules: [],
|
defaultRules: [
|
||||||
|
{
|
||||||
|
directives: {
|
||||||
|
background: '--bg',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,6 @@
|
||||||
<NotificationFilters class="rightside-button" />
|
<NotificationFilters class="rightside-button" />
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="panel-body"
|
|
||||||
role="feed"
|
role="feed"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue