UI Mechanics / New Look (orange - gray)

This commit is contained in:
2020-08-01 17:11:43 +02:00
parent bf609fc5cd
commit e5a68f4b85
32 changed files with 766 additions and 118 deletions

View File

@@ -1 +1,12 @@
import axios from "axios";
export function extractTags(tags) {
var results = [];
if (typeof tags !== "undefined") {
for (let [key, value] of Object.entries(tags)) {
if (value === true) {
results.push(key);
}
}
}
return results;
}