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 80d9f42 commit 8ac95aeCopy full SHA for 8ac95ae
src/scripts/db/AppDB.ts
@@ -34,7 +34,9 @@ export default class AppDB extends Dexie {
34
]);
35
console.debug("tagSet", [...tagSet]);
36
spark.tags = [...tagSet].map(removeHash);
37
- spark.contextTags = spark.contextTags.map(removeHash);
+ spark.contextTags = spark.contextTags
38
+ .map(removeHash)
39
+ .map<string>(toLowerCase);
40
41
// we don't have the original anymore, so this has to be good enough
42
spark.originalHtml = spark.html;
0 commit comments