From 20ab4ebf9331a2a36c2337920d2c34c01afe0fa5 Mon Sep 17 00:00:00 2001 From: "Kyle J. Kemp" Date: Mon, 14 Oct 2024 06:24:41 -0500 Subject: [PATCH] add level to npc/item input --- .../shared/components/input-item/input-item.component.html | 6 +++--- .../shared/components/input-npc/input-npc.component.html | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/shared/components/input-item/input-item.component.html b/src/app/shared/components/input-item/input-item.component.html index fff3550..01dbf7e 100644 --- a/src/app/shared/components/input-item/input-item.component.html +++ b/src/app/shared/components/input-item/input-item.component.html @@ -10,7 +10,7 @@ [sprite]="item.data.sprite"> }
- {{ item.data.name }} + {{ item.data.name }} (Level {{ item.data.requirements?.level ?? 0 }})
@@ -22,11 +22,11 @@ [sprite]="item.data.sprite"> }
- {{ item.data.name }} + {{ item.data.name }} (Level {{ item.data.requirements?.level ?? 0 }})
{{ label() }} - + \ No newline at end of file diff --git a/src/app/shared/components/input-npc/input-npc.component.html b/src/app/shared/components/input-npc/input-npc.component.html index 154a643..01cfedc 100644 --- a/src/app/shared/components/input-npc/input-npc.component.html +++ b/src/app/shared/components/input-npc/input-npc.component.html @@ -9,7 +9,7 @@ [sprite]="item.data.sprite"> }
- {{ item.data.npcId }} + {{ item.data.npcId }} (Level {{ item.data.level ?? 0 }})
@@ -19,11 +19,11 @@
- {{ item.data.npcId }} + {{ item.data.npcId }} (Level {{ item.data.level ?? 0 }})
{{ label() }} - + \ No newline at end of file