Skip to content
Snippets Groups Projects
Unverified Commit ed2dc371 authored by Saurabh Kumar's avatar Saurabh Kumar Committed by GitHub
Browse files

Fix beta submission view dropdown for long list, make them scroll (#3860)

Fixes https://github.com/HyphaApp/hypha/issues/3853

Adds a max-height and overscoll to the dropdown items 
parent 2247ac94
No related branches found
No related tags found
1 merge request!89Upgrade to 5.10.0
{% load i18n %}
{% load querystrings %}
<ul class="text-gray-700 divide-y" aria-labelledby="dropdown-change-status" data-filter-list>
<ul class="text-gray-700 divide-y max-h-80 overflow-scroll" aria-labelledby="dropdown-change-status" data-filter-list>
{% for user in leads %}
<li data-filter-item-text>
<a
......
{% load i18n %}
{% load querystrings %}
<ul class="text-gray-700 dark:text-gray-200" aria-labelledby="dropdown-categories"
<ul class="text-gray-700 max-h-80 overflow-scroll" aria-labelledby="dropdown-categories"
data-filter-list>
{% if selected_category_options %}
<li data-filter-item-text>
......
{% load i18n %}
{% load querystrings %}
<ul class="text-gray-700 divide-y" aria-labelledby="dropdown-change-status">
<ul class="text-gray-700 divide-y max-h-80 overflow-scroll" aria-labelledby="dropdown-change-status">
{% for slug, value in statuses %}
<li data-filter-for="change-status-filter-field">
<a
......
{% load i18n %}
{% load querystrings heroicons %}
<ul class="text-gray-700 divide-y" aria-labelledby="dropdownBgHoverButton" data-filter-list>
<ul class="text-gray-700 divide-y max-h-80 overflow-scroll" aria-labelledby="dropdownBgHoverButton" data-filter-list>
{% if selected_funds %}
<li data-filter-item-text>
<a href="{% url "apply:submissions:list-alt" %}{% remove_from_query "only_query_string" "page" "fund" %}"
......
{% load i18n %}
{% load querystrings heroicons %}
<ul class="text-gray-700 divide-y" aria-labelledby="dropdownBgHoverButton" data-filter-list>
<ul class="text-gray-700 divide-y max-h-80 overflow-scroll" aria-labelledby="dropdownBgHoverButton" data-filter-list>
{% if selected_leads %}
<li data-filter-item-text>
<a href="{% url "apply:submissions:list-alt" %}{% remove_from_query "only_query_string" "page" "lead" %}"
......
{% load i18n %}
{% load querystrings %}
<ul class="text-gray-700 divide-y" aria-labelledby="dropdown-meta-terms" data-filter-list>
<ul class="text-gray-700 divide-y max-h-80 overflow-scroll" aria-labelledby="dropdown-meta-terms" data-filter-list>
{% if selected_meta_terms %}
<li data-filter-item-text>
<a href="{% url "apply:submissions:list-alt" %}{% remove_from_query "only_query_string" "page" "meta_terms" %}"
......
{% load i18n %}
{% load querystrings %}
<ul class="text-gray-700 divide-y dark:text-gray-200" aria-labelledby="dropdown-reviewers" data-filter-list>
<ul class="text-gray-700 divide-y max-h-80 overflow-scroll" aria-labelledby="dropdown-reviewers" data-filter-list>
{% if selected_reviewers %}
<li data-filter-item-text>
<a href="{% url "apply:submissions:list-alt" %}{% remove_from_query "only_query_string" "page" "reviewers" %}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment