Skip to content

Commit

Permalink
layout fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Aug 7, 2023
1 parent 9bb2f3c commit 567495f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ui/src/components/executions/ExecutionOutput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
</template>
</el-table-column>

<el-table-column :label="$t('preview')" align="center">
<el-table-column column-key="action" class-name="row-action">
<template #default="scope">
<FilePreview v-if="scope.row.output.startsWith('kestra:///')" :value="scope.row.output" :execution-id="execution.id" />
</template>
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/executions/VarValue.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<a class="el-button el-button--primary mt-2 mb-2 " v-if="isFile(value)" :href="itemUrl(value)" target="_blank">
<a class="el-button el-button--small el-button--primary" v-if="isFile(value)" :href="itemUrl(value)" target="_blank">
<Download />
&nbsp;
{{ $t('download') }}
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/executions/Vars.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</template>
</el-table-column>

<el-table-column :label="$t('preview')" align="center">
<el-table-column column-key="action" class-name="row-action">
<template #default="scope">
<FilePreview v-if="scope.row.value.startsWith('kestra:///')" :value="scope.row.value" :execution-id="execution.id" />
</template>
Expand Down

0 comments on commit 567495f

Please sign in to comment.