Skip to content

Commit

Permalink
Merge pull request galaxyproject#17065 from guerler/grid_typing
Browse files Browse the repository at this point in the history
Fix typescript warning for grid list operation
  • Loading branch information
martenson authored Nov 23, 2023
2 parents e95e60a + 61426ca commit 01c4de5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Grid/GridList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ watch(operationMessage, () => {
:style="{ width: `${fieldEntry.width}%` }"
:data-description="`grid cell ${rowIndex}-${fieldIndex}`">
<GridOperations
v-if="fieldEntry.type == 'operations'"
v-if="fieldEntry.type == 'operations' && fieldEntry.operations"
:operations="fieldEntry.operations"
:row-data="rowData"
@execute="onOperation($event, rowData)" />
Expand Down

0 comments on commit 01c4de5

Please sign in to comment.