repomind 0.5.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -40878,7 +40878,7 @@ function DiffStats({
|
|
|
40878
40878
|
// src/ui/components/commit-card.tsx
|
|
40879
40879
|
var import_jsx_runtime13 = __toESM(require_jsx_runtime(), 1);
|
|
40880
40880
|
function formatSelection(f) {
|
|
40881
|
-
if (f.selection === "all") return "all";
|
|
40881
|
+
if (!f.selection || f.selection === "all") return "all";
|
|
40882
40882
|
return f.selection.map((h) => `h${h.hunkIndex}`).join(",");
|
|
40883
40883
|
}
|
|
40884
40884
|
function CommitCard(props) {
|