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

UI: Facet View Enhancement #2336

Merged
merged 20 commits into from
Feb 16, 2023
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion web/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,4 @@ module.exports = {
}
}
]

}
1 change: 1 addition & 0 deletions web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM node:12-alpine
WORKDIR /usr/src/app
RUN apk update && apk add --virtual bash coreutils
RUN apk add --no-cache git
COPY package*.json ./
RUN npm install
COPY . .
Expand Down
1 change: 1 addition & 0 deletions web/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ module.exports = {
setupTestFrameworkScriptFile: '<rootDir>/setupEnzyme.ts',
globalSetup: '<rootDir>globalSetup.ts',
setupFiles: ['<rootDir>setupJest.ts'],
testEnvironment: 'jsdom',
globals: {
'ts-jest': {
isolatedModules: 'true'
Expand Down
Loading