Skip to content

add auto render checkbox on app edit page#721

Merged
tavdog merged 1 commit intomainfrom
feat/app_edit_auto_render_toggle
Feb 16, 2026
Merged

add auto render checkbox on app edit page#721
tavdog merged 1 commit intomainfrom
feat/app_edit_auto_render_toggle

Conversation

@tavdog
Copy link
Member

@tavdog tavdog commented Feb 15, 2026

No description provided.

@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @tavdog, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request introduces a user-configurable option on the application configuration page to manage the automatic rendering of the app preview. This enhancement provides users with more control over the preview behavior, potentially improving performance or user experience by allowing them to manually trigger updates when desired, rather than on every change.

Highlights

  • New 'Auto Render Preview' Checkbox: A new checkbox labeled 'Auto Render Preview' has been added to the app edit page, allowing users to control whether the app preview automatically updates.
  • Conditional Preview Rendering: The logic for rendering the app preview has been updated to respect the state of the new 'Auto Render Preview' checkbox, skipping the preview update if the checkbox is unchecked.
  • Internationalization Updates: New translation keys for 'Auto Render Preview' have been added for both English and German languages.
Changelog
  • web/i18n/de.json
    • Added German translation for 'Auto Render Preview'.
  • web/i18n/en.json
    • Added English translation for 'Auto Render Preview'.
  • web/templates/manager/configapp.html
    • Inserted an 'Auto Render Preview' checkbox into the HTML template.
    • Implemented JavaScript logic to conditionally skip the app preview rendering based on the checkbox's state.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request adds a checkbox to enable or disable automatic preview rendering on the app edit page. The implementation is correct, including internationalization support. My only suggestion is to move the inline CSS for the new checkbox to a separate stylesheet to improve code maintainability. Overall, a good addition.

Comment on lines +60 to +61
<div style="text-align:center; margin:8px 0;">
<label style="cursor:pointer; user-select:none; font-size:0.9em;">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve maintainability and adhere to the best practice of separating concerns, it's better to avoid using inline styles. Please move these styles into a dedicated CSS class within your stylesheet (e.g., configapp-simple.css).

You could define classes like these:

.auto-render-preview {
  text-align: center;
  margin: 8px 0;
}

.auto-render-preview-label {
  cursor: pointer;
  user-select: none;
  font-size: 0.9em;
}
Suggested change
<div style="text-align:center; margin:8px 0;">
<label style="cursor:pointer; user-select:none; font-size:0.9em;">
<div class="auto-render-preview">
<label class="auto-render-preview-label">

@tavdog tavdog merged commit c43996c into main Feb 16, 2026
12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant