feat: implement logout on 401 response and update query handling
refactor: replace Button with div for consistent styling in AIEditorLink refactor: update navigation handling in AppVersionList and remove LayoutMain wrapper refactor: remove unused LayoutMain imports and components across various pages fix: ensure user app list is set correctly in useUserAppStore fix: update login URL format in AuthProvider fix: adjust layout styles in EnvPage and other pages for better responsiveness chore: update route definitions and create new routes for apps, config, domain, flowme, org, remote, token, user, and users style: replace Button with div for delete confirmation in various components fix: ensure correct handling of user profile image source
This commit is contained in:
@@ -25,7 +25,6 @@ import {
|
||||
PopoverTrigger,
|
||||
} from '@/components/ui/popover';
|
||||
import { Plus, Pencil, Trash2 } from 'lucide-react';
|
||||
import { LayoutMain } from '@/modules/layout';
|
||||
|
||||
const TableList = () => {
|
||||
const { list, setShowEdit, setFormData, getList } = useUserStore();
|
||||
@@ -71,13 +70,12 @@ const TableList = () => {
|
||||
onOpenChange={(open) => setOpenPopover(open ? user.id : null)}
|
||||
>
|
||||
<PopoverTrigger>
|
||||
<Button
|
||||
variant="destructive"
|
||||
size="sm"
|
||||
<div
|
||||
className="flex items-center px-4 py-2 bg-destructive text-white rounded cursor-pointer"
|
||||
>
|
||||
<Trash2 className="w-4 h-4 mr-1" />
|
||||
删除
|
||||
</Button>
|
||||
</div>
|
||||
</PopoverTrigger>
|
||||
<PopoverContent className="w-auto p-4" align="start">
|
||||
<div className="space-y-3">
|
||||
@@ -221,4 +219,4 @@ export const List = () => {
|
||||
);
|
||||
};
|
||||
|
||||
export default <List />
|
||||
export default List
|
||||
Reference in New Issue
Block a user