don't allow deleting config managed domains

This commit is contained in:
miloschwartz
2025-07-15 13:20:44 -07:00
parent ffe8593a07
commit 83a4677026
5 changed files with 40 additions and 21 deletions

View File

@@ -111,9 +111,10 @@ export function DataTable<TData, TValue>({
variant="outline"
onClick={onRefresh}
disabled={isRefreshing}
loading={isRefreshing}
>
<RefreshCw className={`mr-2 h-4 w-4 ${isRefreshing ? 'animate-spin' : ''}`} />
<RefreshCw
className={`mr-2 h-4 w-4 ${isRefreshing ? "animate-spin" : ""}`}
/>
{t("refresh")}
</Button>
)}