Skip to content

Commit 70d9ea1

Browse files
author
Test
committed
fix: capstone 12-integrate-actions.mdl parse error — set after column → insert after
'set after column colActions' is not supported by MDL parser. ALTER PAGE uses 'insert after colActions' syntax (lines 15, 40 use this correctly). Only line 58 had the wrong syntax.
1 parent 6737387 commit 70d9ea1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

academy/zh/capstone-helpdesk/参考实现/12-integrate-actions.mdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ alter page HD.Ticket_Detail {
5555
-- ============================================================
5656

5757
alter page HD.MyTickets_Overview {
58-
set after column colActions {
58+
insert after colActions {
5959
column colCopy (caption: '', ShowContentAs: customContent, ColumnWidth: manual, Size: 60) {
6060
actionbutton btnCopy (
6161
caption: 'Copy',

0 commit comments

Comments
 (0)