Commit e78233a
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
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
220 | 220 | | |
221 | 221 | | |
222 | 222 | | |
223 | | - | |
| 223 | + | |
224 | 224 | | |
225 | 225 | | |
226 | 226 | | |
| |||
0 commit comments