Skip to content

Commit b56d328

Browse files
Merge branch 'main' into VsCode-Extension
2 parents 75fb58f + 327958e commit b56d328

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/server/templates/components/git_form.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
<!-- File size selector -->
108108
<div class="w-full md:w-[200px]">
109109
<label for="file_size" class="block text-gray-700 mb-1">
110-
Include files under: <span id="size_value" class="font-bold">50kb</span>
110+
Include files under: <span id="size_value" class="font-bold">50kB</span>
111111
</label>
112112
<input type="range"
113113
id="file_size"

src/static/js/utils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ function initializeSlider() {
179179
// Add helper function for formatting size
180180
function formatSize(sizeInKB) {
181181
if (sizeInKB >= 1024) {
182-
return Math.round(sizeInKB / 1024) + 'mb';
182+
return Math.round(sizeInKB / 1024) + 'MB';
183183
}
184-
return Math.round(sizeInKB) + 'kb';
184+
return Math.round(sizeInKB) + 'kB';
185185
}
186186

187187
// Initialize slider on page load

0 commit comments

Comments
 (0)