Jonna Marie Matthiesen commited on
Commit ·
d0e8c47
1
Parent(s): 45f0a42
Make filter names all CAPS
Browse files- app.js +1 -1
- config.json +3 -3
app.js
CHANGED
|
@@ -234,7 +234,7 @@ config.filters.forEach(f => {
|
|
| 234 |
});
|
| 235 |
|
| 236 |
// Metric filter (always last)
|
| 237 |
-
filtersBar.appendChild(createFilterGroup("
|
| 238 |
|
| 239 |
function createFilterGroup(label, id) {
|
| 240 |
const div = document.createElement("div");
|
|
|
|
| 234 |
});
|
| 235 |
|
| 236 |
// Metric filter (always last)
|
| 237 |
+
filtersBar.appendChild(createFilterGroup("METRIC", "filter-metric"));
|
| 238 |
|
| 239 |
function createFilterGroup(label, id) {
|
| 240 |
const div = document.createElement("div");
|
config.json
CHANGED
|
@@ -8,16 +8,16 @@
|
|
| 8 |
"filters": [
|
| 9 |
{
|
| 10 |
"column": "type",
|
| 11 |
-
"label": "
|
| 12 |
},
|
| 13 |
{
|
| 14 |
"column": "batch",
|
| 15 |
-
"label": "
|
| 16 |
"type": "number"
|
| 17 |
},
|
| 18 |
{
|
| 19 |
"column": "device",
|
| 20 |
-
"label": "
|
| 21 |
"value_labels": {
|
| 22 |
"orin_nano": "Jetson Orin Nano Super",
|
| 23 |
"orin_nano_super": "Jetson Orin Nano Super",
|
|
|
|
| 8 |
"filters": [
|
| 9 |
{
|
| 10 |
"column": "type",
|
| 11 |
+
"label": "MODALITY"
|
| 12 |
},
|
| 13 |
{
|
| 14 |
"column": "batch",
|
| 15 |
+
"label": "BATCH SIZE",
|
| 16 |
"type": "number"
|
| 17 |
},
|
| 18 |
{
|
| 19 |
"column": "device",
|
| 20 |
+
"label": "DEVICE",
|
| 21 |
"value_labels": {
|
| 22 |
"orin_nano": "Jetson Orin Nano Super",
|
| 23 |
"orin_nano_super": "Jetson Orin Nano Super",
|