mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-10-31 03:19:20 +08:00 
			
		
		
		
	Fixed the buttons of ActionsSelect and ActionsInput having a default type="submit" (#4162)
				
					
				
			* fixed the buttons having a default type="submit" * fixed linting issue
This commit is contained in:
		| @@ -8,7 +8,7 @@ | ||||
|             :placeholder="placeholder" | ||||
|             :disabled="!enabled" | ||||
|         > | ||||
|         <button class="btn btn-outline-primary" @click="action()" :aria-label="actionAriaLabel"> | ||||
|         <button type="button" class="btn btn-outline-primary" :aria-label="actionAriaLabel" @click="action()"> | ||||
|             <font-awesome-icon :icon="icon" /> | ||||
|         </button> | ||||
|     </div> | ||||
|   | ||||
| @@ -3,7 +3,7 @@ | ||||
|         <select :id="id" ref="select" v-model="model" class="form-select" :disabled="disabled" :required="required"> | ||||
|             <option v-for="option in options" :key="option" :value="option.value" :disabled="option.disabled">{{ option.label }}</option> | ||||
|         </select> | ||||
|         <button class="btn btn-outline-primary" :class="{ disabled: actionDisabled }" :aria-label="actionAriaLabel" @click="action()"> | ||||
|         <button type="button" class="btn btn-outline-primary" :class="{ disabled: actionDisabled }" :aria-label="actionAriaLabel" @click="action()"> | ||||
|             <font-awesome-icon :icon="icon" aria-hidden="true" /> | ||||
|         </button> | ||||
|     </div> | ||||
|   | ||||
| @@ -27,7 +27,7 @@ | ||||
|             <div class="mt-1 mb-3 ps-2 cert-exp-days col-12 col-xl-6"> | ||||
|                 <div v-for="day in settings.tlsExpiryNotifyDays" :key="day" class="d-flex align-items-center justify-content-between cert-exp-day-row py-2"> | ||||
|                     <span>{{ day }} {{ $tc("day", day) }}</span> | ||||
|                     <button type="button" class="btn-rm-expiry btn btn-outline-danger ms-2 py-1" @click="removeExpiryNotifDay(day)" :aria-label="$t('Remove the expiry notification')"> | ||||
|                     <button type="button" class="btn-rm-expiry btn btn-outline-danger ms-2 py-1" :aria-label="$t('Remove the expiry notification')" @click="removeExpiryNotifDay(day)"> | ||||
|                         <font-awesome-icon icon="times" /> | ||||
|                     </button> | ||||
|                 </div> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user