Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

申請一覧を企画区分でソートして見たい #416

Open
K-K4173 opened this issue Jul 19, 2024 · 1 comment
Open

申請一覧を企画区分でソートして見たい #416

K-K4173 opened this issue Jul 19, 2024 · 1 comment

Comments

@K-K4173
Copy link

K-K4173 commented Jul 19, 2024

指定した企画区分が対象となる申請を一覧で表示できるようにしてほしい

@appare45
Copy link
Member

これは、企画一覧ページの企画区分での絞り込みと似たような実装を申請一覧ですると良さそう
(↓企画一覧ページでの企画区分での絞り込み)

const generatedProjectData = (() => {
return projectsData
.filter(
(e) =>
(attributesFilter === "" || e.attributes.includes(attributesFilter)) &&
(categoryFilter == "" || e.category === categoryFilter),
)
.sort((big, small) => big.index - small.index);
})();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants