mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-11-04 01:15:14 +00:00 
			
		
		
		
	Fix satisy typo
This commit is contained in:
		@@ -25,7 +25,7 @@
 | 
			
		||||
                        <div class="col-sm-6 col-md-6">
 | 
			
		||||
                            <div class="form-group">
 | 
			
		||||
                                <label class="custom-switch">
 | 
			
		||||
                                    <input type="checkbox" class="custom-switch-input" name="satify_any" value="1"<%- typeof satify_any !== 'undefined' && satify_any ? ' checked' : '' %>>
 | 
			
		||||
                                    <input type="checkbox" class="custom-switch-input" name="satisfy_any" value="1"<%- typeof satisfy_any !== 'undefined' && satisfy_any ? ' checked' : '' %>>
 | 
			
		||||
                                    <span class="custom-switch-indicator"></span>
 | 
			
		||||
                                    <span class="custom-switch-description"><%- i18n('access-lists', 'satisfy-any') %></span>
 | 
			
		||||
                                </label>
 | 
			
		||||
@@ -48,7 +48,7 @@
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
        
 | 
			
		||||
 | 
			
		||||
                    <div class="items"><!-- items --></div>
 | 
			
		||||
                </div>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -72,7 +72,7 @@ module.exports = Mn.View.extend({
 | 
			
		||||
 | 
			
		||||
            let data = {
 | 
			
		||||
                name:       form_data.name,
 | 
			
		||||
                satify_any: !!form_data.satify_any,
 | 
			
		||||
                satisfy_any: !!form_data.satisfy_any,
 | 
			
		||||
                items:      items_data,
 | 
			
		||||
                clients:    clients_data
 | 
			
		||||
            };
 | 
			
		||||
 
 | 
			
		||||
@@ -18,7 +18,7 @@
 | 
			
		||||
    <%- i18n('access-lists', 'client-count', {count: clients.length || 0}) %>
 | 
			
		||||
</td>
 | 
			
		||||
<td>
 | 
			
		||||
    <% if (satify_any) { %>
 | 
			
		||||
    <% if (satisfy_any) { %>
 | 
			
		||||
    <%- i18n('str', 'any') %>
 | 
			
		||||
    <%} else { %>
 | 
			
		||||
    <%- i18n('str', 'all') %>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user