Merge branch 'main' into select-db

# Conflicts:
#	src/i18n/locales/en.js
#	src/utils/exportSQL/generic.js
This commit is contained in:
1ilit
2024-07-07 17:57:33 +03:00
13 changed files with 143 additions and 60 deletions

View File

@@ -46,10 +46,17 @@ export default function TablesTab() {
{tables.map((t) => (
<div id={`scroll_table_${t.id}`} key={t.id}>
<Collapse.Panel
className="relative"
header={
<div className="overflow-hidden text-ellipsis whitespace-nowrap">
{t.name}
</div>
<>
<div className="overflow-hidden text-ellipsis whitespace-nowrap">
{t.name}
</div>
<div
className="w-1 h-full absolute top-0 left-0 bottom-0"
style={{ backgroundColor: t.color }}
/>
</>
}
itemKey={`${t.id}`}
>