mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-24 10:22:18 +00:00
fix typos, remove duplicate attribute
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user