Skip to content

Commit

Permalink
Merge pull request #4022 from bjester/misc-fixes-x2
Browse files Browse the repository at this point in the history
Fix missing staging tree link in UI
  • Loading branch information
bjester authored Apr 13, 2023
2 parents b9729c5 + 4861fb4 commit 2db72b9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

<VToolbar v-bind="$attrs" :flat="flat" :color="color">
<slot></slot>
<template #extension name="extension"></template>
<template #extension>
<slot name="extension"></slot>
</template>
</VToolbar>

</template>
Expand Down
2 changes: 1 addition & 1 deletion contentcuration/contentcuration/viewsets/sync/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ def log_sync_exception(e, user=None, change=None, changes=None):
report_exception(e, user=user, contexts=contexts)

# make sure we leave a record in the logs just in case.
logging.error(e)
logging.exception(e)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"devserver:hot": "npm-run-all --parallel build:dev:hot runserver",
"devserver-hot": "yarn run devserver:hot",
"devshell": "cd contentcuration && python manage.py shell --settings=contentcuration.dev_settings",
"celery": "(cd contentcuration && DJANGO_SETTINGS_MODULE=contentcuration.dev_settings celery -A contentcuration worker --without-mingle --without-gossip -l info) || true",
"celery": "(cd contentcuration && DJANGO_SETTINGS_MODULE=contentcuration.dev_settings celery -A contentcuration worker --without-mingle --without-gossip -c 1 -l info) || true",
"storybook": "start-storybook",
"storybook:debug": "start-storybook --debug-webpack",
"storybook:build": "build-storybook",
Expand Down

0 comments on commit 2db72b9

Please sign in to comment.