Skip to content

Commit

Permalink
various fixes for macOS dev environment
Browse files Browse the repository at this point in the history
  • Loading branch information
usu committed Nov 12, 2022
1 parent 505d8d5 commit 82ce59f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions api/config/packages/dev/lexik_jwt_authentication.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
parameters:
env(COOKIE_PREFIX): ""

lexik_jwt_authentication:
set_cookies:
'%env(COOKIE_PREFIX)%jwt_hp':
secure: false

'%env(COOKIE_PREFIX)%jwt_s':
secure: false
Empty file modified create-ecamp3-test-database.sh
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ services:
restart: on-failure

browserless:
image: browserless/chrome:1.56.0-puppeteer-18.0.5@sha256:83a0f24eb4341c30e0f5106a98f1d1e5a3981805fce2829403cda9ef2e0b965e
image: browserless/chrome:1.56.0-puppeteer-18.0.5
container_name: 'ecamp3-browserless'
ports:
- '3010:3000'
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"test:e2e:ci": "vue-cli-service test:e2e --headless",
"test:unit:debug": "node --inspect-brk=0.0.0.0:9229 ./node_modules/@vue/cli-service/bin/vue-cli-service.js test:unit --no-cache --runInBand",
"test:unit:watch": "vue-cli-service test:unit --watch",
"postinstall": "sed -i 's/Color.extend(contrast);/Color.extend({contrast});/g' node_modules/colorjs.io/dist/color.js"
"postinstall": "sed 's/Color.extend(contrast);/Color.extend({contrast});/g' node_modules/colorjs.io/dist/color.js > node_modules/colorjs.io/dist/color.js.tmpfix; cat node_modules/colorjs.io/dist/color.js.tmpfix > node_modules/colorjs.io/dist/color.js; rm node_modules/colorjs.io/dist/color.js.tmpfix"
},
"dependencies": {
"@intlify/core": "9.2.2",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/dashboard/SelectFilter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default {
labelValue() {
if (this.multiple) {
const list = (this.value || []).map((item) => this.processedItems[item].text)
const lang = document.querySelector('html').getAttribute('lang')
const lang = this.$store.state.lang.language
const listFormat = new Intl.ListFormat(lang, {
type: this.andFilter ? 'conjunction' : 'disjunction',
})
Expand Down

0 comments on commit 82ce59f

Please sign in to comment.