Skip to content

Commit e78233a

Browse files
Copilotmynjj
andauthored
Fix AA0219: ToolTip for ReportSetupChoice must start with 'Specifies' (#7642)
The `ReportSetupChoice` PageField in `PowerBIAssistedSetup.Page.al` violated AL rule AA0219, which requires all PageField `ToolTip` properties to begin with `'Specifies'`. ## Change - **`PowerBIAssistedSetup.Page.al`**: Updated `ToolTip` on `ReportSetupChoice` field ```al // Before ToolTip = 'Choose whether to manually configure report settings or deploy pre-built reports.'; // After ToolTip = 'Specifies whether to manually configure report settings or deploy pre-built reports.'; ``` --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: mynjj <61959453+mynjj@users.noreply.github.com>
1 parent ae75431 commit e78233a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Apps/W1/PowerBIReports/App/Core/Pages/PowerBIAssistedSetup.Page.al

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ page 36950 "PowerBI Assisted Setup"
220220
{
221221
ApplicationArea = All;
222222
Caption = 'I would like to';
223-
ToolTip = 'Choose whether to manually configure report settings or deploy pre-built reports.';
223+
ToolTip = 'Specifies whether to manually configure report settings or deploy pre-built reports.';
224224
OptionCaption = 'Deploy out-of-the-box reports,Configure report settings';
225225
}
226226
}

0 commit comments

Comments
 (0)