Fixes and refactoring

This commit is contained in:
2023-12-12 12:27:46 +02:00
parent 99e6523f0c
commit e0cfb144a3
7 changed files with 35 additions and 47 deletions

View File

@ -40,7 +40,6 @@ export default {
axios.post(`${config.APP_URL}/api/php/php_array_to_json.php`, {
data: this.toolData.data,
minify_json: this.toolData.minifyJson ? true : false,
transformResponse: x => x
})
.then((response) => {
this.toolResult = response.data.data;

View File

@ -34,7 +34,7 @@ export default {
toolData: {
data: '',
dataDelimiter: '',
dataIsJson: '',
dataIsJson: false,
},
toolResult: '',
};