-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing documentLog.uuid index to the table (#470)
- Loading branch information
1 parent
9c92f04
commit 569b5ce
Showing
9 changed files
with
2,844 additions
and
2 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
...rojectId]/versions/[commitUuid]/_components/Sidebar/CommitSelector/CurrentCommitsList.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
'use client' | ||
|
||
import { | ||
CommitStatus, | ||
DocumentVersion, | ||
|
2 changes: 2 additions & 0 deletions
2
...mitUuid]/documents/[documentUuid]/_components/DocumentEditor/Editor/RefineModal/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
'use client' | ||
|
||
import { ReactNode, useEffect, useMemo, useState } from 'react' | ||
|
||
import { | ||
|
2 changes: 2 additions & 0 deletions
2
...r/Editor/RefineModal/steps/2_SelectEvaluationResults/SelectableEvaluationResultsTable.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
'use client' | ||
|
||
import { Dispatch, SetStateAction } from 'react' | ||
import { capitalize } from 'lodash-es' | ||
|
||
|
2 changes: 2 additions & 0 deletions
2
...tUuid]/_components/DocumentEditor/Editor/RefineModal/steps/3_GenerateSuggestion/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
'use client' | ||
|
||
import { useEffect, useMemo, useState } from 'react' | ||
|
||
import { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE INDEX IF NOT EXISTS "document_log_own_uuid_idx" ON "latitude"."document_logs" USING btree ("uuid"); |
Oops, something went wrong.