forked from ProcessMaker/processmaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditdata.blade.php
More file actions
19 lines (17 loc) · 818 Bytes
/
editdata.blade.php
File metadata and controls
19 lines (17 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!-- data edit -->
<monaco-editor v-if="!showTree" ref="monaco" data-cy="editorViewFrame" :options="monacoLargeOptions" v-model="jsonData"
language="json" style="border:1px solid gray; min-height:700px;"></monaco-editor>
<tree-view v-if="showTree" v-model="jsonData" style="border:1px; solid gray; min-height:700px;"></tree-view>
<div class="d-flex justify-content-between mt-3">
<data-tree-toggle v-model="showTree"></data-tree-toggle>
<span>
@isset($dataActionsAddons)
@foreach ($dataActionsAddons as $dataActionsAddon)
{!! $dataActionsAddon['content'] ?? '' !!}
@endforeach
@endisset
<button type="button" class="btn btn-secondary" @click="updateRequestData()">
{{__('Save')}}
</button>
</span>
</div>