Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
scc-net
netvs
netvs-core
Commits
cf407df1
Commit
cf407df1
authored
Nov 17, 2021
by
gj4210
👽
Committed by
janis.streib
Dec 05, 2021
Browse files
ADD: Include Transaction API object in Transaction error output
parent
f88f044b
Changes
1
Hide whitespace changes
Inline
Side-by-side
frontend/src/components/TransactionList.vue
View file @
cf407df1
...
...
@@ -129,7 +129,7 @@
Weitere Fehlerinformationen:
</p>
<CopyField
class=
"shadow"
variant=
"danger"
:text=
"JSON.stringify($store.state.transaction_result.error, null, 1)"
:text=
"JSON.stringify(
{ta: api_ta, result:
$store.state.transaction_result.error
}
, null, 1)"
multiline/>
</
template
>
<
template
v-if=
"$store.state.transaction_result.type === 'success'"
>
...
...
@@ -238,6 +238,7 @@ import DBEditor from './DBEditor'
import
TransactionUtil
from
'
@/util/transactionutil
'
import
Vue
from
'
vue
'
import
CopyField
from
'
./CopyField
'
import
APIUtils
from
'
@/util/apiutil
'
export
default
{
name
:
'
TransactionList
'
,
...
...
@@ -266,6 +267,9 @@ export default {
}
)
}
return
res
}
,
api_ta
()
{
return
APIUtils
.
buildAPITaFromTaObjectArray
(
this
.
$store
.
state
)
}
}
,
methods
:
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment