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">
<button type="button" class=" close-modal-button">Not Now</button>
<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>
</div>
</div>

View File

@ -5,12 +5,12 @@ Apply changes
{% endblock %}
{% 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 %}
{% 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="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 %}
{% block searchbar %}

View File

@ -16,7 +16,7 @@
</div>
</div>
<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>
@ -25,10 +25,6 @@
<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>
</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">
<h3>Unique settings</h3>
{% if plugin_config_unique %}

View File

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