UI elements on the knowledge base page are displaying abnormally. #21785

Open
opened 2026-02-21 20:14:17 -05:00 by yindo · 5 comments
Owner

Originally created by @shy20221121 on GitHub (Jan 20, 2026).

Self Checks

  • I have read the Contributing Guide and Language Policy.
  • This is only for bug report, if you would like to ask a question, please head to Discussions.
  • I have searched for existing issues search for existing issues, including closed ones.
  • I confirm that I am using English to submit this report, otherwise it will be closed.
  • 【中文用户 & Non English User】请使用英语提交,否则会被关闭 :)
  • Please do not modify this template :) and fill in all the required fields.

Dify version

1.11.4

Cloud or Self Hosted

Self Hosted (Docker)

Steps to reproduce

Image

When scrolling down the page
Some UI elements on the knowledge base page are displaying abnormally.

✔️ Expected Behavior

The knowledge base badge element is placed below the navigation bar.

Actual Behavior

No response

Originally created by @shy20221121 on GitHub (Jan 20, 2026). ### Self Checks - [x] I have read the [Contributing Guide](https://github.com/langgenius/dify/blob/main/CONTRIBUTING.md) and [Language Policy](https://github.com/langgenius/dify/issues/1542). - [x] This is only for bug report, if you would like to ask a question, please head to [Discussions](https://github.com/langgenius/dify/discussions/categories/general). - [x] I have searched for existing issues [search for existing issues](https://github.com/langgenius/dify/issues), including closed ones. - [x] I confirm that I am using English to submit this report, otherwise it will be closed. - [x] 【中文用户 & Non English User】请使用英语提交,否则会被关闭 :) - [x] Please do not modify this template :) and fill in all the required fields. ### Dify version 1.11.4 ### Cloud or Self Hosted Self Hosted (Docker) ### Steps to reproduce <img width="889" height="65" alt="Image" src="https://github.com/user-attachments/assets/0ca91adf-1f67-4405-9d3f-90013af0b4c9" /> When scrolling down the page Some UI elements on the knowledge base page are displaying abnormally. ### ✔️ Expected Behavior The knowledge base badge element is placed below the navigation bar. ### ❌ Actual Behavior _No response_
yindo added the 🐞 bug🤔 cant-reproduce labels 2026-02-21 20:14:17 -05:00
Author
Owner

@dosubot[bot] commented on GitHub (Jan 20, 2026):

This issue is caused by the sticky toolbar (which contains the badge, tag filter, and related controls) using sticky top-0 without accounting for the height of the navigation bar above it. As a result, the toolbar can overlap or appear above the nav bar instead of sitting just below it. The navigation bar itself does not add extra spacing or offset for the sticky toolbar beneath it, so the two elements stack directly on top of each other source.

To fix this, you can add a top offset to the sticky toolbar that matches the height of the navigation bar. For example, if your nav bar is 56px tall, update the sticky bar's class from top-0 to top-[56px] (or use the appropriate Tailwind/custom class for your nav height):

<div className="sticky top-[56px] z-10 flex items-center justify-end gap-x-1 bg-background-body px-12 pb-2 pt-4">
  {/* badge, tag filter, etc. */}
</div>

If you want a temporary fix, you can use your browser's dev tools or a custom stylesheet to override the sticky bar's top property:

/* Example: adjust the selector as needed for your DOM */
.sticky {
  top: 56px !important;
}

This will ensure the badge and toolbar always appear just below the navigation bar. No recent pull requests or issues address this directly, so this manual adjustment is the recommended workaround for now.

To reply, just mention @dosu.


How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other

Chat with Dosu Open in Cursor Join Discord Share on X

@dosubot[bot] commented on GitHub (Jan 20, 2026): <!-- Answer --> This issue is caused by the sticky toolbar (which contains the badge, tag filter, and related controls) using `sticky top-0` without accounting for the height of the navigation bar above it. As a result, the toolbar can overlap or appear above the nav bar instead of sitting just below it. The navigation bar itself does not add extra spacing or offset for the sticky toolbar beneath it, so the two elements stack directly on top of each other [source](https://github.com/langgenius/dify/blob/3ebe53ada1199a90e6d2fbcc3b9c39d416ba1469/web/app/components/datasets/list/index.tsx#L66-L109). To fix this, you can add a `top` offset to the sticky toolbar that matches the height of the navigation bar. For example, if your nav bar is 56px tall, update the sticky bar's class from `top-0` to `top-[56px]` (or use the appropriate Tailwind/custom class for your nav height): ```jsx <div className="sticky top-[56px] z-10 flex items-center justify-end gap-x-1 bg-background-body px-12 pb-2 pt-4"> {/* badge, tag filter, etc. */} </div> ``` If you want a temporary fix, you can use your browser's dev tools or a custom stylesheet to override the sticky bar's `top` property: ```css /* Example: adjust the selector as needed for your DOM */ .sticky { top: 56px !important; } ``` This will ensure the badge and toolbar always appear just below the navigation bar. No recent pull requests or issues address this directly, so this manual adjustment is the recommended workaround for now. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/080bdd35-6081-4028-9e56-7584794cf05e?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/080bdd35-6081-4028-9e56-7584794cf05e?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/080bdd35-6081-4028-9e56-7584794cf05e?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/080bdd35-6081-4028-9e56-7584794cf05e?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/080bdd35-6081-4028-9e56-7584794cf05e?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/080bdd35-6081-4028-9e56-7584794cf05e?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/080bdd35-6081-4028-9e56-7584794cf05e?feedback_type=other)</sup> [![Chat with Dosu](https://dosu.dev/dosu-chat-badge.svg)](https://app.dosu.dev/6088a4f4-073a-43f3-b3d4-4f06fb0c05a0/ask?utm_source=github)&nbsp;[![Open in Cursor](https://dosu.dev/dosu-in-cursor.svg)](https://cursor.com/link/prompt?text=This%20issue%20is%20caused%20by%20the%20sticky%20toolbar%20%28which%20contains%20the%20badge%2C%20tag%20filter%2C%20and%20related%20controls%29%20using%20%60sticky%20top-0%60%20without%20accounting%20for%20the%20height%20of%20the%20navigation%20bar%20above%20it.%20As%20a%20result%2C%20the%20toolbar%20can%20overlap%20or%20appear%20above%20the%20nav%20bar%20instead%20of%20sitting%20just%20below%20it.%20The%20navigation%20bar%20itself%20does%20not%20add%20extra%20spacing%20or%20offset%20for%20the%20sticky%20toolbar%20beneath%20it%2C%20so%20the%20two%20elements%20stack%20directly%20on%20top%20of%20each%20other%20%5Bsource%5D%28https%3A//github.com/langgenius/dify/blob/3ebe53ada1199a90e6d2fbcc3b9c39d416ba1469/web/app/components/datasets/list/index.tsx%23L66-L109%29.%0A%0ATo%20fix%20this%2C%20you%20can%20add%20a%20%60top%60%20offset%20to%20the%20sticky%20toolbar%20that%20matches%20the%20height%20of%20the%20navigation%20bar.%20For%20example%2C%20if%20your%20nav%20bar%20is%2056px%20tall%2C%20update%20the%20sticky%20bar%27s%20class%20from%20%60top-0%60%20to%20%60top-%5B56px%5D%60%20%28or%20use%20the%20appropriate%20Tailwind/custom%20class%20for%20your%20nav%20height%29%3A%0A%0A%60%60%60jsx%0A%3Cdiv%20className%3D%22sticky%20top-%5B56px%5D%20z-10%20flex%20items-center%20justify-end%20gap-x-1%20bg-background-body%20px-12%20pb-2%20pt-4%22%3E%0A%20%20%7B/%2A%20badge%2C%20tag%20filter%2C%20etc.%20%2A/%7D%0A%3C/div%3E%0A%60%60%60%0A%0AIf%20you%20want%20a%20temporary%20fix%2C%20you%20can%20use%20your%20browser%27s%20dev%20tools%20or%20a%20custom%20stylesheet%20to%20override%20the%20sticky%20bar%27s%20%60top%60%20property%3A%0A%0A%60%60%60css%0A/%2A%20Example%3A%20adjust%20the%20selector%20as%20needed%20for%20your%20DOM%20%2A/%0A.sticky%20%7B%0A%20%20top%3A%2056px%20%21important%3B%0A%7D%0A%60%60%60%0A%0AThis%20will%20ensure%20the%20badge%20and%20toolbar%20always%20appear%20just%20below%20the%20navigation%20bar.%20No%20recent%20pull%20requests%20or%20issues%20address%20this%20directly%2C%20so%20this%20manual%20adjustment%20is%20the%20recommended%20workaround%20for%20now.)&nbsp;[![Join Discord](https://img.shields.io/badge/join-5865F2?logo=discord&logoColor=white&label=)](https://go.dosu.dev/discord-bot)&nbsp;[![Share on X](https://img.shields.io/badge/X-share-black)](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/langgenius/dify/issues/31270)
Author
Owner

@fatelei commented on GitHub (Jan 20, 2026):

Self Checks

  • I have read the Contributing Guide and Language Policy.[x] This is only for bug report, if you would like to ask a question, please head to Discussions.[x] I have searched for existing issues search for existing issues, including closed ones.[x] I confirm that I am using English to submit this report, otherwise it will be closed.[x] 【中文用户 & Non English User】请使用英语提交,否则会被关闭 :)[x] Please do not modify this template :) and fill in all the required fields.

Dify version

1.11.4

Cloud or Self Hosted

Self Hosted (Docker)

Steps to reproduce

Image When scrolling down the page Some UI elements on the knowledge base page are displaying abnormally.

✔️ Expected Behavior

The knowledge base badge element is placed below the navigation bar.

Actual Behavior

No response

i could not reproduce it

@fatelei commented on GitHub (Jan 20, 2026): > ### Self Checks > * [x] I have read the [Contributing Guide](https://github.com/langgenius/dify/blob/main/CONTRIBUTING.md) and [Language Policy](https://github.com/langgenius/dify/issues/1542).[x] This is only for bug report, if you would like to ask a question, please head to [Discussions](https://github.com/langgenius/dify/discussions/categories/general).[x] I have searched for existing issues [search for existing issues](https://github.com/langgenius/dify/issues), including closed ones.[x] I confirm that I am using English to submit this report, otherwise it will be closed.[x] 【中文用户 & Non English User】请使用英语提交,否则会被关闭 :)[x] Please do not modify this template :) and fill in all the required fields. > > ### Dify version > 1.11.4 > > ### Cloud or Self Hosted > Self Hosted (Docker) > > ### Steps to reproduce > <img alt="Image" width="889" height="65" src="https://private-user-images.githubusercontent.com/118727564/537872941-0ca91adf-1f67-4405-9d3f-90013af0b4c9.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Njg4OTQ3NzcsIm5iZiI6MTc2ODg5NDQ3NywicGF0aCI6Ii8xMTg3Mjc1NjQvNTM3ODcyOTQxLTBjYTkxYWRmLTFmNjctNDQwNS05ZDNmLTkwMDEzYWYwYjRjOS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMTIwJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDEyMFQwNzM0MzdaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1hY2I4ZjVmODIzYjJjMTYxYjk3ZTRhMzAyNTU5NjRiZTEwZDA3MzE3NjM3N2MwNTE2Zjk2MmFlMmY2ZTE0MGM1JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.sncEtT8a4QmhFtD0t-mB-y9pcKDfGijGy4JPYUwhl1A"> > When scrolling down the page Some UI elements on the knowledge base page are displaying abnormally. > > ### ✔️ Expected Behavior > The knowledge base badge element is placed below the navigation bar. > > ### ❌ Actual Behavior > _No response_ i could not reproduce it
Author
Owner

@shy20221121 commented on GitHub (Jan 20, 2026):

Self Checks

  • I have read the Contributing Guide and Language Policy.[x] This is only for bug report, if you would like to ask a question, please head to Discussions.[x] I have searched for existing issues search for existing issues, including closed ones.[x] I confirm that I am using English to submit this report, otherwise it will be closed.[x] 【中文用户 & Non English User】请使用英语提交,否则会被关闭 :)[x] Please do not modify this template :) and fill in all the required fields.

Dify version

1.11.4

Cloud or Self Hosted

Self Hosted (Docker)

Steps to reproduce

Image When scrolling down the page Some UI elements on the knowledge base page are displaying abnormally. ### ✔️ Expected Behavior The knowledge base badge element is placed below the navigation bar. ### Actual Behavior _No response_

i could not reproduce it

That's strange, I was able to reproduce it using both Edge and Chrome.

edge:

Image

chrome:

Image
@shy20221121 commented on GitHub (Jan 20, 2026): > > ### Self Checks > > > > > > * [x] I have read the [Contributing Guide](https://github.com/langgenius/dify/blob/main/CONTRIBUTING.md) and [Language Policy](https://github.com/langgenius/dify/issues/1542).[x] This is only for bug report, if you would like to ask a question, please head to [Discussions](https://github.com/langgenius/dify/discussions/categories/general).[x] I have searched for existing issues [search for existing issues](https://github.com/langgenius/dify/issues), including closed ones.[x] I confirm that I am using English to submit this report, otherwise it will be closed.[x] 【中文用户 & Non English User】请使用英语提交,否则会被关闭 :)[x] Please do not modify this template :) and fill in all the required fields. > > ### Dify version > > 1.11.4 > > ### Cloud or Self Hosted > > Self Hosted (Docker) > > ### Steps to reproduce > > <img alt="Image" width="889" height="65" src="https://private-user-images.githubusercontent.com/118727564/537872941-0ca91adf-1f67-4405-9d3f-90013af0b4c9.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Njg4OTQ3NzcsIm5iZiI6MTc2ODg5NDQ3NywicGF0aCI6Ii8xMTg3Mjc1NjQvNTM3ODcyOTQxLTBjYTkxYWRmLTFmNjctNDQwNS05ZDNmLTkwMDEzYWYwYjRjOS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMTIwJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDEyMFQwNzM0MzdaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1hY2I4ZjVmODIzYjJjMTYxYjk3ZTRhMzAyNTU5NjRiZTEwZDA3MzE3NjM3N2MwNTE2Zjk2MmFlMmY2ZTE0MGM1JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.sncEtT8a4QmhFtD0t-mB-y9pcKDfGijGy4JPYUwhl1A"> > > When scrolling down the page Some UI elements on the knowledge base page are displaying abnormally. > > ### ✔️ Expected Behavior > > The knowledge base badge element is placed below the navigation bar. > > ### ❌ Actual Behavior > > _No response_ > > i could not reproduce it That's strange, I was able to reproduce it using both Edge and Chrome. edge: <img width="962" height="65" alt="Image" src="https://github.com/user-attachments/assets/bb819df9-bde8-4742-adb9-f82f9a8b5237" /> chrome: <img width="1841" height="204" alt="Image" src="https://github.com/user-attachments/assets/1992261b-47e9-42ba-8494-3e44afc7cbd0" />
Author
Owner

@fatelei commented on GitHub (Jan 20, 2026):

Self Checks

  • I have read the Contributing Guide and Language Policy.[x] This is only for bug report, if you would like to ask a question, please head to Discussions.[x] I have searched for existing issues search for existing issues, including closed ones.[x] I confirm that I am using English to submit this report, otherwise it will be closed.[x] 【中文用户 & Non English User】请使用英语提交,否则会被关闭 :)[x] Please do not modify this template :) and fill in all the required fields.

Dify version

1.11.4

Cloud or Self Hosted

Self Hosted (Docker)

Steps to reproduce

Image When scrolling down the page Some UI elements on the knowledge base page are displaying abnormally. ### ✔️ Expected Behavior The knowledge base badge element is placed below the navigation bar. ### Actual Behavior _No response_

i could not reproduce it

That's strange, I was able to reproduce it using both Edge and Chrome.

edge:

Image chrome: Image

can you record a video

@fatelei commented on GitHub (Jan 20, 2026): > > > ### Self Checks > > > > > > > > > * [x] I have read the [Contributing Guide](https://github.com/langgenius/dify/blob/main/CONTRIBUTING.md) and [Language Policy](https://github.com/langgenius/dify/issues/1542).[x] This is only for bug report, if you would like to ask a question, please head to [Discussions](https://github.com/langgenius/dify/discussions/categories/general).[x] I have searched for existing issues [search for existing issues](https://github.com/langgenius/dify/issues), including closed ones.[x] I confirm that I am using English to submit this report, otherwise it will be closed.[x] 【中文用户 & Non English User】请使用英语提交,否则会被关闭 :)[x] Please do not modify this template :) and fill in all the required fields. > > > ### Dify version > > > 1.11.4 > > > ### Cloud or Self Hosted > > > Self Hosted (Docker) > > > ### Steps to reproduce > > > <img alt="Image" width="889" height="65" src="https://private-user-images.githubusercontent.com/118727564/537872941-0ca91adf-1f67-4405-9d3f-90013af0b4c9.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Njg4OTQ3NzcsIm5iZiI6MTc2ODg5NDQ3NywicGF0aCI6Ii8xMTg3Mjc1NjQvNTM3ODcyOTQxLTBjYTkxYWRmLTFmNjctNDQwNS05ZDNmLTkwMDEzYWYwYjRjOS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMTIwJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDEyMFQwNzM0MzdaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1hY2I4ZjVmODIzYjJjMTYxYjk3ZTRhMzAyNTU5NjRiZTEwZDA3MzE3NjM3N2MwNTE2Zjk2MmFlMmY2ZTE0MGM1JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.sncEtT8a4QmhFtD0t-mB-y9pcKDfGijGy4JPYUwhl1A"> > > > When scrolling down the page Some UI elements on the knowledge base page are displaying abnormally. > > > ### ✔️ Expected Behavior > > > The knowledge base badge element is placed below the navigation bar. > > > ### ❌ Actual Behavior > > > _No response_ > > > > > > i could not reproduce it > > That's strange, I was able to reproduce it using both Edge and Chrome. > > edge: > > <img alt="Image" width="962" height="65" src="https://private-user-images.githubusercontent.com/118727564/537895077-bb819df9-bde8-4742-adb9-f82f9a8b5237.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Njg5MjE2MjEsIm5iZiI6MTc2ODkyMTMyMSwicGF0aCI6Ii8xMTg3Mjc1NjQvNTM3ODk1MDc3LWJiODE5ZGY5LWJkZTgtNDc0Mi1hZGI5LWY4MmY5YThiNTIzNy5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMTIwJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDEyMFQxNTAyMDFaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1lZTkzMzliMmNhOWZhOTVlZDgxZTUyMmFkODg1YzdkNTJmOGU4MGViMTQ4ZDAwYmU4Mjc3ODQzMDU0OTJmOTFiJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.rtNBd1hNbUMWiAyLaw_P1nb0VI3rjjkcgzOn8zTLKDo"> > chrome: > > <img alt="Image" width="1841" height="204" src="https://private-user-images.githubusercontent.com/118727564/537895473-1992261b-47e9-42ba-8494-3e44afc7cbd0.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Njg5MjE2MjEsIm5iZiI6MTc2ODkyMTMyMSwicGF0aCI6Ii8xMTg3Mjc1NjQvNTM3ODk1NDczLTE5OTIyNjFiLTQ3ZTktNDJiYS04NDk0LTNlNDRhZmM3Y2JkMC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMTIwJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDEyMFQxNTAyMDFaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT01MGYyMzM4MTIzOTlhNDg1YjcwYzY0YWMxYzQxNTE1YWY1NDkyMzAzMWUyYTVjZTliZjVkOGJhZDEwNjVhOWZlJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.LX44Gm7RNkoQLw2PDrZJGYcLYmxLrgTElXOMgGjqO8w"> can you record a video
Author
Owner

@shy20221121 commented on GitHub (Jan 21, 2026):

Self Checks

  • I have read the Contributing Guide and Language Policy.[x] This is only for bug report, if you would like to ask a question, please head to Discussions.[x] I have searched for existing issues search for existing issues, including closed ones.[x] I confirm that I am using English to submit this report, otherwise it will be closed.[x] 【中文用户 & Non English User】请使用英语提交,否则会被关闭 :)[x] Please do not modify this template :) and fill in all the required fields.

Dify version

1.11.4

Cloud or Self Hosted

Self Hosted (Docker)

Steps to reproduce

Image When scrolling down the page Some UI elements on the knowledge base page are displaying abnormally. ### ✔️ Expected Behavior The knowledge base badge element is placed below the navigation bar. ### Actual Behavior _No response_

i could not reproduce it

That's strange, I was able to reproduce it using both Edge and Chrome.
edge:
Image
chrome:
Image

can you record a video

Please see the attachment.

Video_20260121165946.zip

@shy20221121 commented on GitHub (Jan 21, 2026): > > > > ### Self Checks > > > > > > > > > > > > * [x] I have read the [Contributing Guide](https://github.com/langgenius/dify/blob/main/CONTRIBUTING.md) and [Language Policy](https://github.com/langgenius/dify/issues/1542).[x] This is only for bug report, if you would like to ask a question, please head to [Discussions](https://github.com/langgenius/dify/discussions/categories/general).[x] I have searched for existing issues [search for existing issues](https://github.com/langgenius/dify/issues), including closed ones.[x] I confirm that I am using English to submit this report, otherwise it will be closed.[x] 【中文用户 & Non English User】请使用英语提交,否则会被关闭 :)[x] Please do not modify this template :) and fill in all the required fields. > > > > ### Dify version > > > > 1.11.4 > > > > ### Cloud or Self Hosted > > > > Self Hosted (Docker) > > > > ### Steps to reproduce > > > > <img alt="Image" width="889" height="65" src="https://private-user-images.githubusercontent.com/118727564/537872941-0ca91adf-1f67-4405-9d3f-90013af0b4c9.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Njg4OTQ3NzcsIm5iZiI6MTc2ODg5NDQ3NywicGF0aCI6Ii8xMTg3Mjc1NjQvNTM3ODcyOTQxLTBjYTkxYWRmLTFmNjctNDQwNS05ZDNmLTkwMDEzYWYwYjRjOS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMTIwJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDEyMFQwNzM0MzdaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1hY2I4ZjVmODIzYjJjMTYxYjk3ZTRhMzAyNTU5NjRiZTEwZDA3MzE3NjM3N2MwNTE2Zjk2MmFlMmY2ZTE0MGM1JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.sncEtT8a4QmhFtD0t-mB-y9pcKDfGijGy4JPYUwhl1A"> > > > > When scrolling down the page Some UI elements on the knowledge base page are displaying abnormally. > > > > ### ✔️ Expected Behavior > > > > The knowledge base badge element is placed below the navigation bar. > > > > ### ❌ Actual Behavior > > > > _No response_ > > > > > > > > > i could not reproduce it > > > > > > That's strange, I was able to reproduce it using both Edge and Chrome. > > edge: > > <img alt="Image" width="962" height="65" src="https://private-user-images.githubusercontent.com/118727564/537895077-bb819df9-bde8-4742-adb9-f82f9a8b5237.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Njg5MjE2MjEsIm5iZiI6MTc2ODkyMTMyMSwicGF0aCI6Ii8xMTg3Mjc1NjQvNTM3ODk1MDc3LWJiODE5ZGY5LWJkZTgtNDc0Mi1hZGI5LWY4MmY5YThiNTIzNy5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMTIwJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDEyMFQxNTAyMDFaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1lZTkzMzliMmNhOWZhOTVlZDgxZTUyMmFkODg1YzdkNTJmOGU4MGViMTQ4ZDAwYmU4Mjc3ODQzMDU0OTJmOTFiJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.rtNBd1hNbUMWiAyLaw_P1nb0VI3rjjkcgzOn8zTLKDo"> > > chrome: > > <img alt="Image" width="1841" height="204" src="https://private-user-images.githubusercontent.com/118727564/537895473-1992261b-47e9-42ba-8494-3e44afc7cbd0.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Njg5MjE2MjEsIm5iZiI6MTc2ODkyMTMyMSwicGF0aCI6Ii8xMTg3Mjc1NjQvNTM3ODk1NDczLTE5OTIyNjFiLTQ3ZTktNDJiYS04NDk0LTNlNDRhZmM3Y2JkMC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMTIwJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDEyMFQxNTAyMDFaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT01MGYyMzM4MTIzOTlhNDg1YjcwYzY0YWMxYzQxNTE1YWY1NDkyMzAzMWUyYTVjZTliZjVkOGJhZDEwNjVhOWZlJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.LX44Gm7RNkoQLw2PDrZJGYcLYmxLrgTElXOMgGjqO8w"> > > can you record a video Please see the attachment. [Video_20260121165946.zip](https://github.com/user-attachments/files/24782746/Video_20260121165946.zip)
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#21785