Add changie and linter fixes

This commit is contained in:
2025-02-27 16:19:21 +01:00
parent 8c8c16c1a1
commit 17db571244
5 changed files with 22 additions and 15 deletions

View File

@@ -29,7 +29,7 @@
<script>
import VueMultiselect from "vue-multiselect";
import {fetchResults, makeFetch} from "ChillMainAssets/lib/api/apiMethods";
import { fetchResults } from "ChillMainAssets/lib/api/apiMethods";
import { mapGetters, mapState } from "vuex";
export default {
@@ -51,9 +51,11 @@ export default {
},
methods: {
getOptions() {
fetchResults(`/api/1.0/person/social-work/social-issue.json`).then((response) => {
this.options = response;
});
fetchResults(`/api/1.0/person/social-work/social-issue.json`).then(
(response) => {
this.options = response;
},
);
},
updateSocialIssues(value) {
this.$store