fix(app): binary file handling in file view (#11312)
This commit is contained in:
parent
b51005ec4a
commit
23c803707d
19 changed files with 221 additions and 24 deletions
|
|
@ -1554,7 +1554,7 @@ export type FileNode = {
|
|||
}
|
||||
|
||||
export type FileContent = {
|
||||
type: "text"
|
||||
type: "text" | "binary"
|
||||
content: string
|
||||
diff?: string
|
||||
patch?: {
|
||||
|
|
|
|||
|
|
@ -2042,7 +2042,7 @@ export type FileNode = {
|
|||
}
|
||||
|
||||
export type FileContent = {
|
||||
type: "text"
|
||||
type: "text" | "binary"
|
||||
content: string
|
||||
diff?: string
|
||||
patch?: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue