Skip to content

Commit ee48fbb

Browse files
986161: Resolved ci failure in Smartcomponents.
1 parent 7b8d602 commit ee48fbb

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

blazor/smart-paste/annotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The Syncfusion Blazor Smart Paste Button component leverages AI to intelligently
1515

1616
Use the `data-smartpaste-description` attribute to provide custom instructions for specific form fields, overriding the default AI-generated descriptions. This is particularly useful for fields requiring specific formats, such as dates or custom data types. The example below demonstrates annotating a Date of Birth field to enforce a `DD-MM-YYYY` format within a `SfDataForm`, which maps form fields to clipboard data processed by the AI.
1717

18-
```razor
18+
```cshtml
1919
@using Syncfusion.Blazor.DataForm
2020
@using Syncfusion.Blazor.SmartComponents
2121
@using Syncfusion.Blazor.Inputs

blazor/smart-paste/claude-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ var app = builder.Build();
186186

187187
Add the Smart Paste Button to a form in the **~/Pages/Home.razor** file to test the Groq AI integration.
188188

189-
```razor
189+
```cshtml
190190
@using Syncfusion.Blazor.DataForm
191191
@using Syncfusion.Blazor.SmartComponents
192192
@using System.ComponentModel.DataAnnotations

blazor/smart-paste/deepseek-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ var app = builder.Build();
181181

182182
Add the Smart Paste Button to a form in the **~/Pages/Home.razor** file to test the Groq AI integration.
183183

184-
```razor
184+
```cshtml
185185
@using Syncfusion.Blazor.DataForm
186186
@using Syncfusion.Blazor.SmartComponents
187187
@using System.ComponentModel.DataAnnotations

blazor/smart-paste/gemini-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ var app = builder.Build();
230230

231231
Add the Smart Paste Button to a form in the **~/Pages/Home.razor** file to test the Groq AI integration.
232232

233-
```razor
233+
```cshtml
234234
@using Syncfusion.Blazor.DataForm
235235
@using Syncfusion.Blazor.SmartComponents
236236
@using System.ComponentModel.DataAnnotations

blazor/smart-paste/groq-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ var app = builder.Build();
184184

185185
Add the Smart Paste Button to a form in the **~/Pages/Home.razor** file to test the Groq AI integration.
186186

187-
```razor
187+
```cshtml
188188
@using Syncfusion.Blazor.DataForm
189189
@using Syncfusion.Blazor.SmartComponents
190190
@using System.ComponentModel.DataAnnotations

blazor/smart-textarea/claude-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ var app = builder.Build();
186186

187187
Add the Smart TextArea component to a Razor file (e.g., `~/Pages/Home.razor`) to use Claude AI for autocompletion:
188188

189-
```razor
189+
```cshtml
190190
@using Syncfusion.Blazor.SmartComponents
191191
192192
<SfSmartTextArea UserRole="@userRole" UserPhrases="@userPhrases" Placeholder="Enter your queries here" @bind-Value="prompt" Width="75%" RowCount="5">

blazor/smart-textarea/customization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Set `ShowSuggestionOnPopup="true"` to display suggestions in a pop-up window abo
2121

2222
Add the following code to a Razor file (e.g., `~/Pages/Home.razor`):
2323

24-
```razor
24+
```cshtml
2525
@using Syncfusion.Blazor.SmartComponents
2626
2727
<SfSmartTextArea UserRole="@userRole" UserPhrases="@userPhrases" Placeholder="Enter your queries here" @bind-Value="prompt" Width="75%" RowCount="5" ShowSuggestionOnPopup="true">
@@ -48,7 +48,7 @@ Set `ShowSuggestionOnPopup="false"` (default) to display suggestions inline with
4848

4949
Add the following code to a Razor file (e.g., `~/Pages/Home.razor`):
5050

51-
```razor
51+
```cshtml
5252
@using Syncfusion.Blazor.SmartComponents
5353
5454
<SfSmartTextArea UserRole="@userRole" UserPhrases="@userPhrases" Placeholder="Enter your queries here" @bind-Value="prompt" Width="75%" RowCount="5" ShowSuggestionOnPopup="false">

blazor/smart-textarea/deepseek-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ var app = builder.Build();
181181

182182
Add the Smart TextArea component to a Razor file (e.g., `~/Pages/Home.razor`) to use DeepSeek AI for autocompletion:
183183

184-
```razor
184+
```cshtml
185185
@using Syncfusion.Blazor.SmartComponents
186186
187187
<SfSmartTextArea UserRole="@userRole" UserPhrases="@userPhrases" Placeholder="Enter your queries here" @bind-Value="prompt" Width="75%" RowCount="5">

blazor/smart-textarea/gemini-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ var app = builder.Build();
230230

231231
Add the Smart TextArea component to a Razor file (e.g., `~/Pages/Home.razor`) to use Gemini AI for autocompletion:
232232

233-
```razor
233+
```cshtml
234234
@using Syncfusion.Blazor.SmartComponents
235235
236236
<SfSmartTextArea UserRole="@userRole" UserPhrases="@userPhrases" Placeholder="Enter your queries here" @bind-Value="prompt" Width="75%" RowCount="5">

blazor/smart-textarea/groq-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ var app = builder.Build();
184184

185185
Add the Smart TextArea component to a Razor file (e.g., `~/Pages/Home.razor`) to use Groq AI for autocompletion:
186186

187-
```razor
187+
```cshtml
188188
@using Syncfusion.Blazor.SmartComponents
189189
190190
<SfSmartTextArea UserRole="@userRole" UserPhrases="@userPhrases" Placeholder="Enter your queries here" @bind-Value="prompt" Width="75%" RowCount="5">

0 commit comments

Comments
 (0)