fix typos, remove duplicate attribute

This commit is contained in:
Harald Bamberger
2025-04-15 14:51:10 +02:00
parent 3669e0df40
commit 9c5ebc902d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import ProfilUpdateView from "../../components/Cis/ProfilUpdate/ProfilUpdateView.js";
import PluginsPhrasen from "../../plugins/Phrasen.js";
import ApiProfilUpdate from '../../api/factory/ProfilUpdate.js';
import ApiProfilUpdate from '../../api/factory/profilUpdate.js';
// TODO: sobald in verwendung den vue router pfad zu ProfilUpdateView definieren und diese app in component auslagern
const app = Vue.createApp({
@@ -113,7 +113,7 @@ export default {
deleteRequest: function (item) {
this.$api
.call(ApiProfil.deleteProfilRequest(item.profil_update_id))
.call(ApiProfilUpdate.deleteProfilRequest(item.profil_update_id))
.then((res) => {
if (res.data.error) {
//? open alert
@@ -399,7 +399,7 @@ export default {
<div class="form-underline flex-fill ">
<div class="form-underline-titel">{{$p.t('ui','anzeigen')}} </div>
<select class="mb-4 " v-model="filter" @change="updateData" class="form-select" aria-label="Profil updates display selection">
<select class="mb-4 form-select" v-model="filter" @change="updateData" aria-label="Profil updates display selection">
<option :selected="true" :value="profilUpdateStates['Pending']" >{{$p.t('profilUpdate','pendingRequests')}}</option>
<option :value="profilUpdateStates['Accepted']">{{$p.t('profilUpdate','acceptedRequests')}}</option>
<option :value="profilUpdateStates['Rejected']">{{$p.t('profilUpdate','rejectedRequests')}}</option>