diff --git a/src/lib/components/filters/content.svelte b/src/lib/components/filters/content.svelte
index e7769c667..973802398 100644
--- a/src/lib/components/filters/content.svelte
+++ b/src/lib/components/filters/content.svelte
@@ -68,13 +68,13 @@
toTag: (attribute, input) => `**${attribute}** not equal to **${input}**`,
types: ['string', 'integer', 'double', 'boolean']
},
- 'not null': {
+ 'is not null': {
toQuery: Query.isNotNull,
toTag: (attribute) => `**${attribute}** is not null`,
types: ['string', 'integer', 'double', 'boolean', 'datetime', 'relationship'],
hideInput: true
},
- null: {
+ 'is null': {
toQuery: Query.isNull,
toTag: (attribute) => `**${attribute}** is null`,
types: ['string', 'integer', 'double', 'boolean', 'datetime', 'relationship'],
@@ -223,7 +223,7 @@
queries.removeFilter(tag);
}}>
- {tag.tag}
+ {JSON.stringify(tag.tag)}