Skip to content

Commit

Permalink
fix(filters): add filters ui
Browse files Browse the repository at this point in the history
  • Loading branch information
Mihoub2 committed Apr 23, 2024
1 parent b7c4137 commit d37eb6b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
16 changes: 15 additions & 1 deletion .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,23 @@ jobs:
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
docker push $IMAGE_ID:staging
# deploy:
# name: 💭 Update staging deployment
# runs-on: ubuntu-latest
# needs: publish-ghcr
# steps:
# - name: Deploy to Cluster
# id: kubectl-deploy
# uses: dataesr/[email protected]
# env:
# KUBE_CONFIG: ${{ secrets.KUBE_CONFIG_DOAD_STAGING }}
# with:
# namespace: ${{ env.DEPLOYMENT_NAMESPACE }}
# restart: ${{ env.DEPLOYMENT }}

notify:
name: 📢 Notify in mattermost channel
needs: publish-ghcr
needs: deploy
if: always()
runs-on: ubuntu-latest
steps:
Expand Down
6 changes: 4 additions & 2 deletions src/pages/contribution-page/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,18 @@ const ContributionPage: React.FC<ContributionPageProps> = () => {
Dernière page
</Button>
</Col>
<Col>
<Col offsetLg="1">
<select
className="fr-select"
name="order"
id="order"
onChange={(e) => setSort(e.target.value)}
>
<option value="DESC">Plus récentes</option>
<option value="DESC">Plus récentes </option>
<option value="ASC">Plus anciennes</option>
</select>
<select
className="fr-select"
name="status"
id="status"
onChange={(e) => setStatus(e.target.value)}
Expand Down

0 comments on commit d37eb6b

Please sign in to comment.