diff --git a/app/imports/ui/components/global/TextField.vue b/app/imports/ui/components/global/TextField.vue
index 337543e8..fcbe9fad 100644
--- a/app/imports/ui/components/global/TextField.vue
+++ b/app/imports/ui/components/global/TextField.vue
@@ -10,6 +10,7 @@
@input="input"
@focus="focused = true"
@blur="focused = false"
+ @keyup="e => $emit('keyup', e)"
/>
diff --git a/app/imports/ui/creature/slots/SlotFillDialog.vue b/app/imports/ui/creature/slots/SlotFillDialog.vue
index 8820c1e0..89329cbe 100644
--- a/app/imports/ui/creature/slots/SlotFillDialog.vue
+++ b/app/imports/ui/creature/slots/SlotFillDialog.vue
@@ -7,8 +7,20 @@
This slot requires a {{ slotPropertyTypeName }}
-
+
+ with the tag {{ model.slotTags[0] }},
+
+
with the following tags:
- that fills less than {{ model.spaceLeft }} slots
+ that fills less than {{ model.spaceLeft }} {{ model.spaceLeft == 1 && 'slot' || 'slots' }}