Skip to content

Commit

Permalink
Try different icon and style for protocol section
Browse files Browse the repository at this point in the history
  • Loading branch information
waxlamp committed Dec 16, 2024
1 parent f8123e5 commit 6f8e1cb
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
6 changes: 6 additions & 0 deletions dandiapi/api/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@
from dandiapi.api.views.users import social_account_to_dict
from dandiapi.zarr.tasks import ingest_dandiset_zarrs

import logging
logging.getLogger(__name__).info('blahhhhhh')
logging.getLogger(__name__).warning('blahhhhhh')
logging.getLogger(__name__).critical('blahhhhhh')


if TYPE_CHECKING:
from django.http.request import HttpRequest

Expand Down
1 change: 1 addition & 0 deletions dev/.env.docker-compose
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ DJANGO_MINIO_STORAGE_MEDIA_URL=http://localhost:9000/django-storage
DJANGO_DANDI_DANDISETS_BUCKET_NAME=dandi-dandisets
DJANGO_DANDI_DANDISETS_LOG_BUCKET_NAME=dandiapi-dandisets-logs
DJANGO_DANDI_DANDISETS_EMBARGO_LOG_BUCKET_NAME=dandiapi-embargo-dandisets-logs
DJANGO_DANDI_LOG_LEVEL=INFO
DJANGO_DANDI_WEB_APP_URL=http://localhost:8085
DJANGO_DANDI_API_URL=http://localhost:8000
DJANGO_DANDI_JUPYTERHUB_URL=https://hub.dandiarchive.org/
Expand Down
21 changes: 8 additions & 13 deletions web/src/components/DLP/OverviewTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,22 +71,17 @@
:items="protocols"
v-if="protocols && protocols.length"
name="Protocols"
icon="mdi-protocol"
icon="mdi-rodent"
>
<template #content="slotProps">
<div class="text-caption grey--text text--darken-1">
<span class="pl-2">
- {{ slotProps.item }}
<v-btn
v-if="isURL(slotProps.item)"
icon
:href="slotProps.item"
target="_blank"
rel="noopener"
>
<v-icon>mdi-link</v-icon>
</v-btn>
</span>
<a
:href="slotProps.item"
target="_blank"
rel="noopener"
>
{{ slotProps.item }}
</a>
</div>
</template>
</MetadataCard>
Expand Down

0 comments on commit 6f8e1cb

Please sign in to comment.