Skip to content

Commit 1a96e77

Browse files
query syntax correction (#3795)
1 parent a63f156 commit 1a96e77

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pkg/appStore/deployment/repository/ChartGroupEntry.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,7 @@ func (impl *ChartGroupEntriesRepositoryImpl) MarkChartGroupEntriesDeleted(chartG
110110
var chartGroupEntries []*ChartGroupEntry
111111
_, err := tx.Model(&chartGroupEntries).
112112
Where("id in (?)", pg.In(chartGroupId)).
113-
Set("deleted = ", true).
113+
Set("deleted = ?", true).
114114
Update()
115115
return chartGroupEntries, err
116116
}
117-

0 commit comments

Comments
 (0)