mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-09-21 05:52:35 +08:00
fix(jetbrains): resolve revert tooltip fallback
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@kilocode/kilo-jetbrains": patch
|
||||
---
|
||||
|
||||
Update the JetBrains reasoning block icon to a lightbulb shape.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@kilocode/kilo-jetbrains": patch
|
||||
---
|
||||
|
||||
Render multi-hunk modified-file diffs correctly in the JetBrains diff viewer.
|
||||
@@ -2,4 +2,4 @@
|
||||
"@kilocode/kilo-jetbrains": patch
|
||||
---
|
||||
|
||||
Show reverted-card diff actions inline with the session header and open rolled-back changes in the diff viewer.
|
||||
Improve JetBrains session transcript layout, icons, reverted-change summaries, and multi-hunk diff rendering.
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@kilocode/kilo-jetbrains": patch
|
||||
---
|
||||
|
||||
Show the rolled-back file list when reopening a session whose last message was reverted.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@kilocode/kilo-jetbrains": patch
|
||||
---
|
||||
|
||||
Sharpen the chat message copy icon in JetBrains.
|
||||
+1
-1
@@ -198,7 +198,7 @@ class RevertBanner(
|
||||
val root = model.session?.directory
|
||||
?.takeIf { it.isNotBlank() }
|
||||
?.let { runCatching { Path.of(it) }.getOrNull() }
|
||||
return (root?.resolve(path) ?: path.toAbsolutePath()).normalize().toString()
|
||||
return root?.resolve(path)?.normalize()?.toString() ?: file
|
||||
}
|
||||
|
||||
/** Height that fits at most [MAX_FILE_ROWS] rows, or 0 when the list is short enough to show in full. */
|
||||
|
||||
Reference in New Issue
Block a user