File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Symfony/Component/VarDumper/Dumper Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -462,14 +462,14 @@ function showCurrent(state)
462
462
reveal(currentNode);
463
463
highlight(root, currentNode, state.nodes);
464
464
}
465
- counter.textContent = (state.isEmpty() ? 0 : state.idx + 1) + ' on ' + state.count();
465
+ counter.textContent = (state.isEmpty() ? 0 : state.idx + 1) + ' of ' + state.count();
466
466
}
467
467
468
468
var search = doc.createElement('div');
469
469
search.className = 'sf-dump-search-wrapper sf-dump-search-hidden';
470
470
search.innerHTML = '
471
471
<input type="text" class="sf-dump-search-input">
472
- <span class="sf-dump-search-count">0 on 0<\/span>
472
+ <span class="sf-dump-search-count">0 of 0<\/span>
473
473
<button type="button" class="sf-dump-search-input-previous" tabindex="-1">
474
474
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg">
475
475
<path d="M1683 1331l-166 165q-19 19-45 19t-45-19l-531-531-531 531q-19 19-45 19t-45-19l-166-165q-19-19-19-45.5t19-45.5l742-741q19-19 45-19t45 19l742 741q19 19 19 45.5t-19 45.5z"\/>
@@ -501,7 +501,7 @@ function showCurrent(state)
501
501
resetHighlightedNodes(root);
502
502
var searchQuery = e.target.value;
503
503
if ('' === searchQuery) {
504
- counter.textContent = '0 on 0';
504
+ counter.textContent = '0 of 0';
505
505
506
506
return;
507
507
}
You can’t perform that action at this time.
0 commit comments