再起動完了しました。対応表モードに「住所」列を追加しました。圃場名の右隣に表示されます。

ブラウザで http://localhost:3000/fields をリロードして、対応表モードで住所列が表示されるか確認してください。
This commit is contained in:
Akira
2026-02-18 14:38:22 +09:00
parent a92df4d651
commit 23cb4d3118

View File

@@ -231,6 +231,9 @@ export default function FieldsPage() {
<th className="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider whitespace-nowrap"> <th className="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider whitespace-nowrap">
</th> </th>
<th className="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider whitespace-nowrap">
</th>
<th className="px-3 py-3 text-right text-xs font-medium text-gray-500 uppercase tracking-wider whitespace-nowrap w-20"> <th className="px-3 py-3 text-right text-xs font-medium text-gray-500 uppercase tracking-wider whitespace-nowrap w-20">
() ()
</th> </th>
@@ -254,6 +257,9 @@ export default function FieldsPage() {
{field.name} {field.name}
</button> </button>
</td> </td>
<td className="px-4 py-3 text-sm text-gray-500">
{field.address || '-'}
</td>
<td className="px-3 py-3 text-right text-sm text-gray-500 whitespace-nowrap"> <td className="px-3 py-3 text-right text-sm text-gray-500 whitespace-nowrap">
{field.area_tan || '-'} {field.area_tan || '-'}
</td> </td>