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