youssefreda9 commited on
Commit
507ca44
·
1 Parent(s): 397e47b

fix: Remove double-inversion of summary length - Browser already reverses range slider in RTL - Sending raw value now matches correctly: طويل→3, قصير→1

Browse files
Files changed (1) hide show
  1. src/index.html +1 -1
src/index.html CHANGED
@@ -1034,7 +1034,7 @@
1034
  },
1035
  body: JSON.stringify({
1036
  text: text,
1037
- length: 4 - parseInt(lengthValue),
1038
  full_text: isFullText
1039
  })
1040
  });
 
1034
  },
1035
  body: JSON.stringify({
1036
  text: text,
1037
+ length: parseInt(lengthValue),
1038
  full_text: isFullText
1039
  })
1040
  });