[hotfix] Reactive reaction create
This commit is contained in:
parent
60ba8d19ca
commit
466458014a
|
@ -1,7 +1,7 @@
|
|||
.commentEditor {
|
||||
border: 2px solid #e8e8e8;
|
||||
border-radius: 8px;
|
||||
padding: 0 16px 16px;
|
||||
padding: 16px;
|
||||
|
||||
.textarea {
|
||||
min-height: 1em;
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
.ProseMirrorOverrides > .ProseMirror {
|
||||
&-focused {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.paragraph {
|
||||
font-size: 15px;
|
||||
line-height: 1.1em;
|
||||
|
|
|
@ -14,8 +14,11 @@ export default gql`
|
|||
stat {
|
||||
rating
|
||||
}
|
||||
shout
|
||||
createBy {
|
||||
shout {
|
||||
id
|
||||
slug
|
||||
}
|
||||
createdBy {
|
||||
name
|
||||
slug
|
||||
userpic
|
||||
|
|
|
@ -260,7 +260,7 @@ export type MutationDeleteMessageArgs = {
|
|||
}
|
||||
|
||||
export type MutationDeleteReactionArgs = {
|
||||
reaction: Scalars['Int']
|
||||
id: Scalars['Int']
|
||||
}
|
||||
|
||||
export type MutationDeleteShoutArgs = {
|
||||
|
@ -331,6 +331,7 @@ export type MutationUpdateProfileArgs = {
|
|||
}
|
||||
|
||||
export type MutationUpdateReactionArgs = {
|
||||
id: Scalars['Int']
|
||||
reaction: ReactionInput
|
||||
}
|
||||
|
||||
|
@ -661,7 +662,6 @@ export type Subscription = {
|
|||
newMessage?: Maybe<Message>
|
||||
newReaction?: Maybe<Reaction>
|
||||
newShout?: Maybe<Shout>
|
||||
newInvite?: Maybe<DraftCollab>
|
||||
}
|
||||
|
||||
export type Token = {
|
||||
|
|
Loading…
Reference in New Issue
Block a user