|
|
|
@ -4,11 +4,9 @@
|
|
|
|
<div class="actions__item__description">
|
|
|
|
<div class="actions__item__description">
|
|
|
|
<h3>{{ operation.name }}</h3>
|
|
|
|
<h3>{{ operation.name }}</h3>
|
|
|
|
<small>{{ operation.description }}</small>
|
|
|
|
<small>{{ operation.description }}</small>
|
|
|
|
<div>
|
|
|
|
<Button v-if="colored">
|
|
|
|
<button v-if="colored">
|
|
|
|
{{ t('workflowengine', 'Add new flow') }}
|
|
|
|
{{ t('workflowengine', 'Add new flow') }}
|
|
|
|
</Button>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="actions__item_options">
|
|
|
|
<div class="actions__item_options">
|
|
|
|
<slot />
|
|
|
|
<slot />
|
|
|
|
@ -17,8 +15,13 @@
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
import Button from '@nextcloud/vue/dist/Components/Button'
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
name: 'Operation',
|
|
|
|
name: 'Operation',
|
|
|
|
|
|
|
|
components: {
|
|
|
|
|
|
|
|
Button,
|
|
|
|
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
props: {
|
|
|
|
operation: {
|
|
|
|
operation: {
|
|
|
|
type: Object,
|
|
|
|
type: Object,
|
|
|
|
|