Skip to content

Commit 2db72b9

Browse files
authored
Merge pull request #4022 from bjester/misc-fixes-x2
Fix missing staging tree link in UI
2 parents b9729c5 + 4861fb4 commit 2db72b9

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

contentcuration/contentcuration/frontend/shared/views/ToolBar.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
<VToolbar v-bind="$attrs" :flat="flat" :color="color">
44
<slot></slot>
5-
<template #extension name="extension"></template>
5+
<template #extension>
6+
<slot name="extension"></slot>
7+
</template>
68
</VToolbar>
79

810
</template>

contentcuration/contentcuration/viewsets/sync/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ def log_sync_exception(e, user=None, change=None, changes=None):
8989
report_exception(e, user=user, contexts=contexts)
9090

9191
# make sure we leave a record in the logs just in case.
92-
logging.error(e)
92+
logging.exception(e)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"devserver:hot": "npm-run-all --parallel build:dev:hot runserver",
3232
"devserver-hot": "yarn run devserver:hot",
3333
"devshell": "cd contentcuration && python manage.py shell --settings=contentcuration.dev_settings",
34-
"celery": "(cd contentcuration && DJANGO_SETTINGS_MODULE=contentcuration.dev_settings celery -A contentcuration worker --without-mingle --without-gossip -l info) || true",
34+
"celery": "(cd contentcuration && DJANGO_SETTINGS_MODULE=contentcuration.dev_settings celery -A contentcuration worker --without-mingle --without-gossip -c 1 -l info) || true",
3535
"storybook": "start-storybook",
3636
"storybook:debug": "start-storybook --debug-webpack",
3737
"storybook:build": "build-storybook",

0 commit comments

Comments
 (0)