We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6cefe4 commit cbc0e3aCopy full SHA for cbc0e3a
1 file changed
web/static/app.js
@@ -799,8 +799,10 @@ const TL_COLORS = {
799
error: '#f44747',
800
};
801
802
+const TL_QUERY_OPS = new Set(['Query', 'Exec', 'Execute']);
803
+
804
function renderTimeline() {
- let filtered = getFiltered();
805
+ let filtered = getFiltered().filter(({ev}) => TL_QUERY_OPS.has(ev.op));
806
if (filtered.length === 0) {
807
statsEl.textContent = '0 queries';
808
const dpr = window.devicePixelRatio || 1;
0 commit comments