Skip to content

Commit

Permalink
byzer-org#202 show link on schedule name to schedule instance
Browse files Browse the repository at this point in the history
  • Loading branch information
githubnameting committed Aug 31, 2022
1 parent d636eac commit 6e0deaa
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/page/Schedules/Schedules/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,22 @@
@sort-change="handleSortChange"
@filter-change="handleFilterChange"
>
<el-table-column
<!-- <el-table-column
show-overflow-tooltip
:prop="'id'"
:label="$t('schedules.schId')"
:min-width="'120'"
></el-table-column>
></el-table-column> -->
<el-table-column
show-overflow-tooltip
:prop="'name'"
:label="$t('schedules.name')"
:min-width="'150'"
></el-table-column>
>
<template slot-scope="scope">
<a href="javascript:;" @click="handleViewInstance(scope.row)">{{scope.row.name}}</a>
</template>
</el-table-column>
<el-table-column
show-overflow-tooltip
:label="$t('schedules.status')"
Expand Down Expand Up @@ -134,15 +138,15 @@
{{ $t('schedules.viewDAG') }}
</div>
</el-dropdown-item>
<el-dropdown-item>
<!-- <el-dropdown-item>
<div
class="schedules-action-dropdown"
@click="handleViewInstance(scope.row)"
>
<i class="el-ksd-icon-view_22 icon-btn"></i>
{{ $t('schedules.viewInstance') }}
</div>
</el-dropdown-item>
</el-dropdown-item> -->
</el-dropdown-menu>
</el-dropdown>
</el-tooltip>
Expand Down

0 comments on commit 6e0deaa

Please sign in to comment.