mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
removed console logs
This commit is contained in:
@@ -160,8 +160,6 @@ export default {
|
||||
},
|
||||
getData(projektarbeit_id, studiensemester_kurzbz, projekttyp_kurzbz) {
|
||||
|
||||
console.log(projekttyp_kurzbz);
|
||||
|
||||
this.studiensemester_kurzbz = studiensemester_kurzbz;
|
||||
|
||||
this.defaultFormDataValues.stunden = '0.0';
|
||||
@@ -298,7 +296,6 @@ export default {
|
||||
let max = 0;
|
||||
|
||||
for (const betreuer of this.$refs.table.tabulator.getData()) {
|
||||
console.log(typeof betreuer.betreuer_id);
|
||||
if (betreuer.betreuer_id > max) max = betreuer.betreuer_id;
|
||||
}
|
||||
|
||||
@@ -307,9 +304,6 @@ export default {
|
||||
formDataModified() {
|
||||
if (this.autocompleteSelectedBetreuer != null) return true;
|
||||
|
||||
console.log(this.formData);
|
||||
console.log(this.initialFormData);
|
||||
|
||||
for (const prop in this.initialFormData) {
|
||||
if (typeof this.formData[prop] == 'undefined') return true;
|
||||
if (this.formData[prop] != this.initialFormData[prop]) return true;
|
||||
|
||||
Reference in New Issue
Block a user