denoland / deploy_feedback

For reporting issues with Deno Deploy
https://deno.com/deploy
74 stars 5 forks source link

[KV Feedback]: Scrollable cells in "data" table on Deno Deploy dashboard #562

Open isAdrisal opened 10 months ago

isAdrisal commented 10 months ago

🔍

Type of feedback

General feedback

Description

The KV tab of the Deno Deploy dashboard now has a Data table that enables quick reference of data stored in the project's KV instance.

The cells of the table are truncated with ellipsis because of the truncate tailwind CSS class applied.

It would be better if those cells were horizontally scrollable to make it easier to view the contents without needing to inspect the page HTML.

Steps to reproduce (if applicable)

No response

Expected behavior (if applicable)

No response

Possible solution (if applicable)

Instead of:

<td class="truncate px-2 py-2 text-sm text-gray-500">

Use:

<td class="overflow-x-scroll whitespace-nowrap px-2 py-2 text-sm text-gray-500">

Additional context

No response

chillbrodev commented 8 months ago

I upvote this as much needed. The truncation makes it impossible to review data. In the mean time, I will make a small script that fetches the data for me to review.