File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
server/templates/components Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change @@ -179,9 +179,9 @@ function initializeSlider() {
179179// Add helper function for formatting size
180180function 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
You can’t perform that action at this time.
0 commit comments