fix: update preview-page bug fix sights

This commit is contained in:
2025-11-26 19:37:26 +03:00
parent aaeaed3fa5
commit 11133b6839
4 changed files with 111 additions and 30 deletions

View File

@@ -505,7 +505,12 @@ const LinkedStationsContentsInner = <
}}
renderOption={(props, option) => (
<li {...props} key={option.id}>
{String(option.name)}
<div className="flex justify-between items-center w-full">
<p>{String(option.name)}</p>
<p className="text-xs text-gray-500 max-w-[300px] mr-4 truncate">
{String(option.description)}
</p>
</div>
</li>
)}
/>