mirror of
https://github.com/BreizhHardware/Site-comptage-heure.git
synced 2026-01-18 16:17:28 +01:00
13
.devcontainer/devcontainer.json
Normal file
13
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "Node.js 24",
|
||||
"image": "mcr.microsoft.com/devcontainers/javascript-node:24",
|
||||
"features": {
|
||||
"ghcr.io/devcontainers/features/git-lfs:1": {}
|
||||
},
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"settings": {}
|
||||
}
|
||||
},
|
||||
"postCreateCommand": "npm install -g pnpm && pnpm install"
|
||||
}
|
||||
@@ -106,7 +106,7 @@ export default function AdminPage() {
|
||||
const [selectedUserIds, setSelectedUserIds] = useState<string[]>([]);
|
||||
const [sortBy, setSortBy] = useState<'date' | 'createdAt'>('date');
|
||||
const [sortOrder, setSortOrder] = useState<'asc' | 'desc'>('desc');
|
||||
const [showPendingFirst, setShowPendingFirst] = useState(false);
|
||||
const [showPendingFirst, setShowPendingFirst] = useState(true);
|
||||
const { refetchSettings } = useSettings();
|
||||
|
||||
useEffect(() => {
|
||||
|
||||
Reference in New Issue
Block a user