0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 18:32:41 +00:00

Correct truncation when looking for data: in css folding

This commit is contained in:
David Bolack
2024-08-02 15:25:41 -05:00
parent 05d4d5b1ff
commit 423a4a521a

View File

@@ -438,7 +438,7 @@ const CodeEditor = createClass({
// Extra data url chomping
// Try to make it pretty...
const startOfData = text.indexOf('data:');
const startOfData = text.indexOf('data:') > 0 ? text.indexOf('data:') : false;
if(startOfData) {
text = (startOfData > maxLength) ?
`${text.slice(0, text.indexOf(':') + 1)} ... ${text.slice(startOfData, startOfData + 5)} ...` :