Skip to content

Commit

Permalink
chore(version): update to version 'v0.9.3'.
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Jun 12, 2023
2 parents cd25424 + 9a03464 commit e0fa173
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 35 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=0.9.2
version=0.9.3
micronautVersion=3.9.0
lombokVersion=1.18.26
45 changes: 23 additions & 22 deletions ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions ui/src/components/graph/TreeTaskNode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:id="task.id"
:type="task.type"
:disabled="task.disabled"
:state="this.state"
:state="state"
>
<template #content>
<div v-if="task.state" class="status-wrapper">
Expand All @@ -13,7 +13,7 @@
<template #info>
<span class="bottom">
<el-tag
v-if="this.execution"
v-if="execution"
type="info"
class="me-1"
size="small"
Expand Down Expand Up @@ -65,7 +65,7 @@
:flow-id="task.flowId"
/>

<el-tooltip v-if="isFlowable && !this.execution && !isReadOnly && isAllowedEdit" content="Handle errors" transition="" :hide-after="0" :persistent="false">
<el-tooltip v-if="isFlowable && !execution && !isReadOnly && isAllowedEdit" content="Handle errors" transition="" :hide-after="0" :persistent="false">
<el-button
class="node-action"
size="small"
Expand All @@ -74,19 +74,19 @@
/>
</el-tooltip>

<el-tooltip v-if="!this.execution && !isReadOnly && isAllowedEdit" content="Delete" transition="" :hide-after="0" :persistent="false">
<el-tooltip v-if="!execution && !isReadOnly && isAllowedEdit" content="Delete" transition="" :hide-after="0" :persistent="false">
<el-button
class="node-action"
size="small"
@click="forwardEvent('delete', {id: this.task.id, section: SECTIONS.TASK})"
@click="forwardEvent('delete', {id: task.id, section: SECTIONS.TASK})"
:icon="Delete"
/>
</el-tooltip>

<el-tooltip v-if="this.execution" :content="$t('show task logs')" :persistent="false" transition="" :hide-after="0">
<el-tooltip v-if="execution" :content="$t('show task logs')" :persistent="false" transition="" :hide-after="0">
<el-button
class="node-action"
:disabled="this.taskRuns.length === 0"
:disabled="taskRuns.length === 0"
size="small"
@click="onTaskSelect()"
>
Expand All @@ -96,7 +96,7 @@

<el-tooltip content="Edit task" :persistent="false" transition="" :hide-after="0">
<task-edit
v-if="!this.isReadOnly && isAllowedEdit"
v-if="!isReadOnly && isAllowedEdit"
class="node-action"
:section="SECTIONS.TASK"
:task="task"
Expand Down Expand Up @@ -127,7 +127,7 @@
</collapse>
<log-list
:task-id="task.id"
:filter="this.filter"
:filter="filter"
:exclude-metas="['namespace', 'flowId', 'taskId', 'executionId']"
:level="logLevel"
@follow="forwardEvent('follow', $event)"
Expand Down
6 changes: 3 additions & 3 deletions ui/src/components/graph/TreeTriggerNode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@
/>
</el-button>

<el-tooltip v-if="!this.execution && !this.isReadOnly && isAllowedEdit" content="Delete" transition="" :hide-after="0" :persistent="false">
<el-tooltip v-if="!execution && !isReadOnly && isAllowedEdit" content="Delete" transition="" :hide-after="0" :persistent="false">
<el-button
class="node-action"
size="small"
@click="forwardEvent('delete', {id: this.trigger.id, section: SECTIONS.TRIGGER})"
@click="forwardEvent('delete', {id: trigger.id, section: SECTIONS.TRIGGER})"
:icon="Delete"
/>
</el-tooltip>

<task-edit
v-if="!this.isReadOnly && isAllowedEdit"
v-if="!isReadOnly && isAllowedEdit"
class="node-action"
:modal-id="`modal-source-${hash}`"
:task="trigger"
Expand Down

0 comments on commit e0fa173

Please sign in to comment.