commit
7636b8a022
8
public/css/app.css
vendored
8
public/css/app.css
vendored
@ -50031,6 +50031,10 @@ body{
|
|||||||
height: 16rem;
|
height: 16rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.lg\:h-auto{
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.lg\:h-48{
|
.lg\:h-48{
|
||||||
height: 12rem;
|
height: 12rem;
|
||||||
}
|
}
|
||||||
@ -50047,10 +50051,6 @@ body{
|
|||||||
height: 3rem;
|
height: 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lg\:h-auto{
|
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.lg\:w-9{
|
.lg\:w-9{
|
||||||
width: 2.25rem;
|
width: 2.25rem;
|
||||||
}
|
}
|
||||||
|
@ -189,9 +189,11 @@ export default {
|
|||||||
let el = this.$refs.dropdownMenu;
|
let el = this.$refs.dropdownMenu;
|
||||||
let target = event.target;
|
let target = event.target;
|
||||||
|
|
||||||
|
if (typeof el != "undefined") {
|
||||||
if (el !== target && ! el.contains(target)) {
|
if (el !== target && ! el.contains(target)) {
|
||||||
this.isOpen = false;
|
this.isOpen = false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
2
resources/assets/js/plugins/form.js
vendored
2
resources/assets/js/plugins/form.js
vendored
@ -493,7 +493,9 @@ export default class Form {
|
|||||||
|
|
||||||
// Form fields check validation issue
|
// Form fields check validation issue
|
||||||
onFail(error) {
|
onFail(error) {
|
||||||
|
if (typeof this.errors != "undefined") {
|
||||||
this.errors.record(error.response.data.errors);
|
this.errors.record(error.response.data.errors);
|
||||||
|
}
|
||||||
|
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user