Skip to content

Commit

Permalink
Feat/search filters (#7)
Browse files Browse the repository at this point in the history
create facets for topic and language
  • Loading branch information
oliviareichl authored Sep 24, 2024
1 parent 72b735b commit 88de27e
Show file tree
Hide file tree
Showing 34 changed files with 3,845 additions and 3,718 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ jobs:
build-args: |
"NUXT_PUBLIC_API_BASE_URL=${{ vars.NUXT_PUBLIC_API_BASE_URL }}"
"NUXT_PUBLIC_APP_BASE_URL=${{ needs.vars.outputs.public_url }}"
"NUXT_PUBLIC_BOTS=${{ vars.NUXT_PUBLIC_BOTS }}"
"NUXT_PUBLIC_GOOGLE_SITE_VERIFICATION=${{ vars.NUXT_PUBLIC_GOOGLE_SITE_VERIFICATION }}"
"NUXT_PUBLIC_MATOMO_BASE_URL=${{ vars.NUXT_PUBLIC_MATOMO_BASE_URL }}"
"NUXT_PUBLIC_MATOMO_ID=${{ vars.NUXT_PUBLIC_MATOMO_ID }}"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ jobs:

- name: Install dependencies
run: pnpm install --frozen-lockfile
env:
NUXT_PUBLIC_API_BASE_URL: "${{vars.NUXT_PUBLIC_API_BASE_URL}}"

- name: Format
run: pnpm run format:check
Expand Down
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
engine-strict=true
manage-package-manager-versions=true
package-manager-strict=false
shell-emulator=true
use-node-version=20.14.0
2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,10 @@ WORKDIR /app
USER node

COPY --chown=node:node .npmrc package.json pnpm-lock.yaml ./
RUN sed -i "s/use-node-version/# use-node-version/" .npmrc

RUN pnpm fetch

COPY --chown=node:node ./ ./
RUN sed -i "s/use-node-version/# use-node-version/" .npmrc

ARG NUXT_PUBLIC_API_BASE_URL
ARG NUXT_PUBLIC_APP_BASE_URL
Expand Down
1 change: 1 addition & 0 deletions app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
<NuxtLayout>
<NuxtPage />
<NuxtLoadingIndicator />
<NuxtRouteAnnouncer />
</NuxtLayout>
</template>
2 changes: 1 addition & 1 deletion components/search-data-table/data-table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const table = useVueTable({

<template>
<div>
<div class="rounded-md border">
<div class="w-full rounded-md border">
<Table>
<TableHeader>
<TableCaption class="sr-only">
Expand Down
Loading

0 comments on commit 88de27e

Please sign in to comment.