-
Notifications
You must be signed in to change notification settings - Fork 183
Fix: display version in the footer on local instance #2101
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
base: main
Are you sure you want to change the base?
Fix: display version in the footer on local instance #2101
Conversation
The preview deployment is ready. 🟢 Open Preview | Open Build Logs Last updated at: 2025-07-25 14:15:05 CET |
The preview deployment is ready. 🟢 Open Preview | Open Build Logs Last updated at: 2025-07-25 14:15:09 CET |
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.
Pull Request Overview
This PR fixes the version display in the footer to show on local instances, not just cloud instances. The changes restructure the conditional rendering logic to ensure version information appears consistently across both deployment types while maintaining responsive design.
- Removes the cloud-only restriction for version display in small viewports
- Reorganizes the layout structure to properly handle version display for both cloud and local instances
- Maintains existing responsive behavior and visual design patterns
</Link.Anchor> | ||
<span class="divider-wrapper"> | ||
<Divider vertical /> | ||
</span> | ||
{/if} | ||
{/if} |
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.
This closing {/if} statement appears to be misplaced or unmatched. Based on the diff context, it should correspond to the {#if !$isSmallViewport} condition that opens at line 85, but the indentation and logical flow suggest a structural issue in the conditional blocks.
Copilot uses AI. Check for mistakes.
@tejas-raskar Thanks for the PR! We'll confirm with our design team and get back to you shortly. Appreciate your contribution! 🙌 |
Hey @tejas-raskar, Instead of always rendering the version on a new line for small viewports, we could improve the layout by letting it stay in the first row unless there isn’t enough space. |
@HarshMN2345 Great! I will do the required changes and commit it on this branch itself. |
29fbdec
to
cba8d2c
Compare
I made the version inline with the other links as requested and also added the Screencast.From.2025-07-25.19-28-42.mp4 |
@HarshMN2345 The test is failing due to some other errors in files that are not touched by this PR. I can only see one warning relevant to this PR which is removing of the unused CSS. How should I proceed? |
What does this PR do?
Displays the current version in the footer on local instances similar to that on cloud instances.
Test Plan
pnpm run tests
,pnpm run checks
,pnpm run lint
, andpnpm run format
to maintain the code quality.Desktop view:

For
$isSmallViewport
, I tried to maintain the same design as that of the cloud version. The version is shown on the separate line instead of the same line as desktop view.Mobile view:

Related PRs and Issues
Fixes #1997
Have you read the Contributing Guidelines on issues?
Yes