Compare commits

..

No commits in common. "522b58392757c2aaf50cc4787154897112f76a9b" and "056dfdce77b51142f5afac3633424ad4f4f24ee3" have entirely different histories.

2 changed files with 4 additions and 2 deletions

View File

@ -4,7 +4,7 @@
}
.post-grid__toolbar {
@apply flex flex-col md:grid items-start gap-y-4;
@apply items-start gap-y-4;
grid-template-columns: max-content 1fr;
grid-template-rows: auto auto;
@ -25,7 +25,7 @@
select[name='sort_by'] {
grid-column: 2;
grid-row: 2;
@apply w-full md:w-fit justify-self-end;
@apply justify-self-end;
}
.search-by {

View File

@ -64,6 +64,8 @@ export default function archivesInit() {
if (!response.ok) throw new Error(`HTTP ${response.status}`);
const data = await response.json();
console.log('data', data);
// Ignore si une requête plus récente a été envoyée
if (requestId !== lastRequestId) return;