Skip to content
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

Update settings.component.html #2016

Merged
merged 1 commit into from
Mar 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 11 additions & 11 deletions ui/src/app/modules/settings/settings.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h5 class="primary-text mt-3" translate="settings.general.title_general"></h5>
<div class="mb-4">
<h5 class="primary-text mt-3" translate="settings.network.title_network"></h5>
<ul class="list-group mt-2">
<li class="list-group-item d-flex justify-content-between align-items-center">
<li class="list-group-item d-block d-md-flex justify-content-between align-items-center">
<span class="pr-2">
<div>{{ 'settings.network.title_network_interfaces' | translate }}<br>
<small class="grey-text pr-2">{{ 'settings.network.message_network_interface_one' | translate }}</small>
Expand All @@ -82,7 +82,7 @@ <h5 class="primary-text mt-3" translate="settings.network.title_network"></h5>
{{ 'settings.mdns_advertiser' | translate }}<br>
<small class="grey-text pr-2">{{ 'settings.mdns_advertiser_help' | translate }}</small>
</span>
<div>
<div class="mt-3 mt-md-0 pl-0 pl-md-5 w-100 w-md-50">
<select class="custom-select" [formControl]="legacyMdnsFormControl"
[attr.aria-label]="'settings.mdns_advertiser' | translate">
<option value="bonjour-hap">Bonjour HAP</option>
Expand Down Expand Up @@ -124,21 +124,21 @@ <h5 class="primary-text">{{ 'settings.title_startup_options' | translate }}</h5>
<div class="mb-4" *ngIf="$settings.env.serviceMode">
<h5 class="primary-text">{{ 'settings.title_environment_variables' | translate }}</h5>
<ul class="list-group mt-2">
<li class="list-group-item d-flex justify-content-between align-items-center">
<li class="list-group-item d-block d-md-flex justify-content-between align-items-center">
<span>
DEBUG<br>
<small class="grey-text pr-2">{{ 'settings.service.debug_tooltip' | translate }}</small>
</span>
<div class="pull-right">
<div class="my-3 my-md-0 pl-0 pl-md-5 w-100 w-md-50">
<input class="form-control form-control-sm" formControlName="ENV_DEBUG" type="text" />
</div>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
<li class="list-group-item d-block d-md-flex justify-content-between align-items-center">
<span>
NODE_OPTIONS<br>
<small class="grey-text pr-2">{{ 'settings.service.node_tooltip' | translate }}</small>
</span>
<div class="pull-right">
<div class="my-3 my-md-0 pl-0 pl-md-5 w-100 w-md-50">
<input class="form-control form-control-sm" formControlName="ENV_NODE_OPTIONS" type="text" />
</div>
</li>
Expand Down Expand Up @@ -205,12 +205,12 @@ <h5 class="primary-text mt-3">{{ 'settings.title_manage_cached_accessories' | tr
<h5 class="primary-text mt-3">{{ 'settings.title_actions' | translate }}</h5>
<ul class="list-group mt-2">
<li class="list-group-item d-flex justify-content-between align-items-center">
<span class="pr-2">
<span class="">
{{ 'reset.title_force_restart_hb_service' | translate }}<br>
<small class="grey-text pr-2">{{ 'reset.message_force_restart_hb_help_text' | translate }}</small>
</span>
<span class="red-text text-right">
Moved to Main Menu &rarr; {{ 'menu.restart.title' | translate }} &rarr; {{ 'menu.hbrestart.confirm_service_button' | translate }}
<small class="grey-text pr-2">{{ 'reset.message_force_restart_hb_help_text' | translate }}</small><br>
<span class="red-text text-right">
Moved to Main Menu &rarr; {{ 'menu.restart.title' | translate }} &rarr; {{ 'menu.hbrestart.confirm_service_button' | translate }}
</span>
</span>
</li>
</ul>
Expand Down