add update domain Settings for wildcard

This commit is contained in:
Pallavi Kumari
2025-10-20 17:29:23 +05:30
parent 2b05bc1f5f
commit 07f5e8f215
7 changed files with 352 additions and 120 deletions

View File

@@ -125,7 +125,7 @@ export function DNSRecordsDataTable<TData, TValue>({
<Table>
<TableHeader>
{table.getHeaderGroups().map((headerGroup) => (
<TableRow key={headerGroup.id} className="bg-secondary">
<TableRow key={headerGroup.id} className="bg-secondary dark:bg-transparent">
{headerGroup.headers.map((header) => (
<TableHead key={header.id}>
{header.isPlaceholder
@@ -165,7 +165,7 @@ export function DNSRecordsDataTable<TData, TValue>({
colSpan={columns.length}
className="h-24 text-center"
>
No results found.
{t("noResults")}
</TableCell>
</TableRow>
)}