-
Notifications
You must be signed in to change notification settings - Fork 14
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
Fix admin profil #546
Fix admin profil #546
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the fixes! 🙏
> | ||
<div class="fr-grid-row fr-grid-row--gutters fr-grid-row--middle justify-between"> | ||
<div class="fr-col-12 fr-col-md fr-grid-row fr-grid-row--middle"> | ||
<Placeholder |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I find it slightly counter-intuitive that the logo appears at the top of the page but is editable at the end of the form only
cc @agarrone
udata_front/theme/gouvfr/assets/js/pages/Admin/Profile/Profile.vue
Outdated
Show resolved
Hide resolved
} | ||
|
||
onMounted(async () => me.value = await fetchMe()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't we need to fetch me.value
here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, this was necessary before the Dataset PR merge. Now we have access to the useCurrentOrganization
composable instead
..._front/theme/gouvfr/assets/js/pages/OrganizationPublishingForm/Step2DescribeOrganization.vue
Outdated
Show resolved
Hide resolved
@@ -12,7 +12,6 @@ | |||
{% block extra_css %}{% endblock %} | |||
{% block theme_css %} | |||
<link href="{{ theme_static('assets/style.css') }}" rel="stylesheet"> | |||
<link href="{{ theme_static('assets/index.css') }}" rel="stylesheet"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👀 Have we had this broken css import for years?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, this css file is now merged in style.css
since the changes to the way we import datagouv/components. We added cssCodeSplit: false
to the build so this file was removed
This PR closes datagouv/data.gouv.fr#1450
It also removes duplicated types and components.