Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions helm-quarry/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
web:
repository: 'quay.io/wikimedia-quarry/quarry'
tag: pr-84 # web tag managed by github actions
tag: pr-54 # web tag managed by github actions
resources:
requests:
memory: "300Mi"
Expand All @@ -11,7 +11,7 @@ web:

worker:
repository: 'quay.io/wikimedia-quarry/quarry'
tag: pr-84 # worker tag managed by github actions
tag: pr-54 # worker tag managed by github actions
resources:
requests:
memory: "400Mi"
Expand Down
4 changes: 4 additions & 0 deletions quarry/web/static/css/query/view.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ table#query-results-sampled {
min-height: 144px;
}

.cm-s-monokai .CodeMirror-linenumber {
color: #858484;
}

#code {
font-family: Monaco, Consolas, "Ubuntu Mono", monospace;
width: 100%;
Expand Down
3 changes: 2 additions & 1 deletion quarry/web/static/js/query/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ $( function () {
mode: 'text/x-mariadb',
theme: 'monokai',
readOnly: !vars.can_edit,
matchBrackets: true
matchBrackets: true,
lineNumbers: true
} );
}

Expand Down
Loading