mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 10:13:32 -04:00 
			
		
		
		
	chore: Add Stricter Frontend Formatting (#6262)
This commit is contained in:
		| @@ -1,8 +1,15 @@ | ||||
| <template> | ||||
|   <div> | ||||
|     <BaseDialog v-model="dialog" :title="$t('data-pages.manage-aliases')" :icon="$globals.icons.edit" | ||||
|       :submit-icon="$globals.icons.check" :submit-text="$t('general.confirm')" can-submit @submit="saveAliases" | ||||
|       @cancel="$emit('cancel')"> | ||||
|     <BaseDialog | ||||
|       v-model="dialog" | ||||
|       :title="$t('data-pages.manage-aliases')" | ||||
|       :icon="$globals.icons.edit" | ||||
|       :submit-icon="$globals.icons.check" | ||||
|       :submit-text="$t('general.confirm')" | ||||
|       can-submit | ||||
|       @submit="saveAliases" | ||||
|       @cancel="$emit('cancel')" | ||||
|     > | ||||
|       <v-card-text> | ||||
|         <v-container> | ||||
|           <v-row v-for="alias, i in aliases" :key="i"> | ||||
| @@ -10,13 +17,16 @@ | ||||
|               <v-text-field v-model="alias.name" :label="$t('general.name')" :rules="[validators.required]" /> | ||||
|             </v-col> | ||||
|             <v-col cols="2"> | ||||
|               <BaseButtonGroup :buttons="[ | ||||
|                 { | ||||
|                   icon: $globals.icons.delete, | ||||
|                   text: $t('general.delete'), | ||||
|                   event: 'delete', | ||||
|                 }, | ||||
|               ]" @delete="deleteAlias(i)" /> | ||||
|               <BaseButtonGroup | ||||
|                 :buttons="[ | ||||
|                   { | ||||
|                     icon: $globals.icons.delete, | ||||
|                     text: $t('general.delete'), | ||||
|                     event: 'delete', | ||||
|                   }, | ||||
|                 ]" | ||||
|                 @delete="deleteAlias(i)" | ||||
|               /> | ||||
|             </v-col> | ||||
|           </v-row> | ||||
|         </v-container> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user