chore: change button texts

This commit is contained in:
Muhammad Labeeb 2025-04-16 15:52:24 +05:00 committed by GitHub
parent 150400383f
commit 27fe51d133
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 9 deletions

View File

@ -73,7 +73,7 @@
<div class="modal-footer"> <div class="modal-footer">
<button type="button" class=" close-modal-button">Not Now</button> <button type="button" class=" close-modal-button">Not Now</button>
<form method="POST" action="{{ url_for('cli_local_launch')}}"> <form method="POST" action="{{ url_for('cli_local_launch')}}">
<button class=" run_modal_button" type="submit">Run launch platform</button> <button class=" run_modal_button" type="submit">Apply Changes</button>
</form> </form>
</div> </div>
</div> </div>

View File

@ -5,12 +5,12 @@ Apply changes
{% endblock %} {% endblock %}
{% block page_description %} {% block page_description %}
Running launch platform will allow all changes to plugins to take effect. This could take a few minutes to complete. This will run Launch Platform to apply all plugin changes. This may take a few minutes to complete.
{% endblock %} {% endblock %}
{% block page_button_top %} {% block page_button_top %}
<button id="cancel-local-launch-button" hx-post="{{ url_for('cli_stop')}}" hx-trigger="click" hx-swap="none" class=" cancel-process-button" type="submit">Cancel</button> <button id="cancel-local-launch-button" hx-post="{{ url_for('cli_stop')}}" hx-trigger="click" hx-swap="none" class=" cancel-process-button" type="submit">Cancel</button>
<button id="local-launch-button" class=" open-modal-button" type="button">Launch Platform</button> <button id="local-launch-button" class=" open-modal-button" type="button">Apply Changes</button>
{% endblock %} {% endblock %}
{% block searchbar %} {% block searchbar %}

View File

@ -16,7 +16,7 @@
</div> </div>
</div> </div>
<div class="description"> <div class="description">
{% if not is_enabled %} Enable the plugin to edit parameters. {% endif %} {% if not is_enabled %} Enable the plugin to edit settings. {% endif %}
</div> </div>
</div> </div>
@ -25,10 +25,6 @@
<h2>Plugin Settings</h2> <h2>Plugin Settings</h2>
<p>You can adjust the plugin's behavior by changing these settings. Changes will only go live after you apply them.</p> <p>You can adjust the plugin's behavior by changing these settings. Changes will only go live after you apply them.</p>
</div> </div>
<div class="parameter-info">
<h2>Plugin Parameters</h2>
<p>This plugin has default parameters. If you make any changes, save them and run launch platform to make the changes effective.</p>
</div>
<form id="config-forms-container" action="{{ url_for('config_update', name=plugin_name) }}" method="POST"> <form id="config-forms-container" action="{{ url_for('config_update', name=plugin_name) }}" method="POST">
<h3>Unique settings</h3> <h3>Unique settings</h3>
{% if plugin_config_unique %} {% if plugin_config_unique %}

View File

@ -9,7 +9,7 @@ View all your installed plugins in one place.
{% endblock %} {% endblock %}
{% block page_button %} {% block page_button %}
<button class=" open-modal-button" type="button">Launch Platform</button> <button class=" open-modal-button" type="button">Apply Changes</button>
{% endblock %} {% endblock %}
{% set sidebar_active_tab = "my-plugins" %} {% set sidebar_active_tab = "my-plugins" %}