Skip to content

Commit

Permalink
fix editor
Browse files Browse the repository at this point in the history
  • Loading branch information
leifriksheim committed Nov 28, 2023
1 parent 88c7fae commit 88db5fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/flux-editor/src/flux-editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export default class MyElement extends LitElement {
editor: Editor | null;

@state()
subject: SubjectRepository<{
repo: SubjectRepository<{
[x: string]: any;
}>;

Expand Down Expand Up @@ -368,7 +368,7 @@ export default class MyElement extends LitElement {
}

async submit() {
const model = new SubjectRepository(Message, {
const repo = new SubjectRepository(Message, {
perspective: this.perspective,
source: this.source,
});
Expand Down

0 comments on commit 88db5fa

Please sign in to comment.