claude-scope 0.5.2 → 0.5.3
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/claude-scope.cjs +3 -3
- package/package.json +1 -1
package/dist/claude-scope.cjs
CHANGED
|
@@ -1395,11 +1395,11 @@ var EmptyLineWidget = class extends StdinDataWidget {
|
|
|
1395
1395
|
// Fourth line (0-indexed)
|
|
1396
1396
|
);
|
|
1397
1397
|
/**
|
|
1398
|
-
* Return
|
|
1399
|
-
*
|
|
1398
|
+
* Return a single space to create a blank separator line.
|
|
1399
|
+
* Using a space character instead of empty string ensures the line is visible.
|
|
1400
1400
|
*/
|
|
1401
1401
|
renderWithData(_data, _context) {
|
|
1402
|
-
return "";
|
|
1402
|
+
return " ";
|
|
1403
1403
|
}
|
|
1404
1404
|
};
|
|
1405
1405
|
|