remove prefix from item name in calculator

This commit is contained in:
2026-03-05 21:56:50 -05:00
parent c069060d8b
commit f910d07b48

View File

@@ -25,7 +25,7 @@
:alt="result.recipe.displayName" :alt="result.recipe.displayName"
class="w-12 h-12 -my-2 rounded flex-shrink-0" class="w-12 h-12 -my-2 rounded flex-shrink-0"
/> />
<span class="text-sm font-medium text-gray-200">{{ result.recipe.displayName }}</span> <span class="text-sm font-medium text-gray-200">{{ result.recipe.displayName.replace(/^T\d+\.\d+\s/, '') }}</span>
<span class="text-xs text-gray-500">{{ result.recipe.category }}</span> <span class="text-xs text-gray-500">{{ result.recipe.category }}</span>
</div> </div>
</td> </td>